gitlab-org--gitlab-foss/app/helpers/profile_helper.rb

20 lines
361 B
Ruby
Raw Normal View History

module ProfileHelper
def oauth_active_class(provider)
if current_user.identities.exists?(provider: provider.to_s)
'active'
end
end
2013-09-03 21:53:01 +00:00
def show_profile_username_tab?
current_user.can_change_username?
end
def show_profile_social_tab?
enabled_social_providers.any?
2013-09-03 21:53:01 +00:00
end
def show_profile_remove_tab?
signup_enabled?
2013-09-03 21:53:01 +00:00
end
end