Method: Frodo::Entity#links
- Defined in:
- lib/frodo/entity.rb
#links ⇒ Hash
Links to other Frodo entitites
119 120 121 122 123 124 125 126 |
# File 'lib/frodo/entity.rb', line 119 def links @links ||= schema.[name].map do |nav_name, details| [ nav_name, { type: details.nav_type, href: "#{id}/#{nav_name}" } ] end.to_h end |