2013-01-07 13:48:57 -05:00
|
|
|
module GroupsHelper
|
2013-06-17 09:51:43 -04:00
|
|
|
def remove_user_from_group_message(group, user)
|
2014-02-07 11:59:55 -05:00
|
|
|
"Are you sure you want to remove \"#{user.name}\" from \"#{group.name}\"?"
|
|
|
|
end
|
|
|
|
|
|
|
|
def leave_group_message(group)
|
|
|
|
"Are you sure you want to leave \"#{group}\" group?"
|
2013-06-17 09:51:43 -04:00
|
|
|
end
|
2014-12-16 09:58:15 -05:00
|
|
|
|
2014-02-13 15:45:51 -05:00
|
|
|
def should_user_see_group_roles?(user, group)
|
|
|
|
if user
|
|
|
|
user.is_admin? || group.members.exists?(user_id: user.id)
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
2013-11-13 03:35:10 -05:00
|
|
|
|
|
|
|
def group_head_title
|
|
|
|
title = @group.name
|
|
|
|
|
|
|
|
title = if current_action?(:issues)
|
|
|
|
"Issues - " + title
|
|
|
|
elsif current_action?(:merge_requests)
|
|
|
|
"Merge requests - " + title
|
|
|
|
elsif current_action?(:members)
|
|
|
|
"Members - " + title
|
|
|
|
elsif current_action?(:edit)
|
|
|
|
"Settings - " + title
|
|
|
|
else
|
|
|
|
title
|
|
|
|
end
|
|
|
|
|
|
|
|
title
|
2014-06-25 06:30:57 -04:00
|
|
|
end
|
|
|
|
|
2014-12-16 09:58:15 -05:00
|
|
|
def group_settings_page?
|
|
|
|
if current_controller?('groups')
|
|
|
|
current_action?('edit') || current_action?('projects')
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
2013-01-07 13:48:57 -05:00
|
|
|
end
|