Module: Nquery::CollectionsHelper
- Defined in:
- app/helpers/nquery/collections_helper.rb
Instance Method Summary collapse
Instance Method Details
#collection_kind_label(collection) ⇒ Object
5 6 7 8 9 10 11 |
# File 'app/helpers/nquery/collections_helper.rb', line 5 def collection_kind_label(collection) case collection.kind when "root" then "Top-level collection" when "personal" then "Personal collection" else "Collection" end end |