Method: Sibu::SectionsConcern#section
- Defined in:
- app/models/concerns/sibu/sections_concern.rb
#section(id) ⇒ Object
5 6 7 8 9 10 |
# File 'app/models/concerns/sibu/sections_concern.rb', line 5 def section(id) if id pos = sections.index {|s| s["id"] == id} pos ? sections[pos] : {"id" => id} end end |