collection_base.rb 242 B

1234567891011
  1. module ExtraCollection
  2. def add(collections)
  3. # all base stuff
  4. collections['Role'] = Role.all
  5. collections['Group'] = Group.all
  6. collections['Organization'] = Organization.all
  7. end
  8. module_function :add
  9. end