Class: FamilyGallery::WelcomeController

Inherits:
BaseController
  • Object
show all
Defined in:
app/controllers/family_gallery/welcome_controller.rb

Instance Method Summary collapse

Methods included from BaseFamilyGalleryController

#current_ability, #current_user

Instance Method Details

#indexObject



2
3
4
5
6
7
# File 'app/controllers/family_gallery/welcome_controller.rb', line 2

def index
  @groups = FamilyGallery::Group
    .accessible_by(current_ability)
    .ordered_by_latest_update
    .limit(25)
end