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

20 lines
412 B
Ruby
Raw Normal View History

module ProfileHelper
def oauth_active_class provider
if current_user.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?
Gitlab.config.omniauth.enabled && !current_user.ldap_user?
end
def show_profile_remove_tab?
gitlab_config.signup_enabled && !current_user.ldap_user?
2013-09-03 21:53:01 +00:00
end
end