Module: FamilyGallery::GroupsHelper

Defined in:
app/helpers/family_gallery/groups_helper.rb

Instance Method Summary collapse

Instance Method Details



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

def link_to_group(group)
  group_name = group.name
  group_name = "[#{FamilyGallery::Group.model_name.human} #{group.id}]" unless group_name.present?

  link_to group_name, group
end