Welcome to mirror list, hosted at ThFree Co, Russian Federation.

profile_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd9e03d95a8e942367fb582167ba4af751457455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module ProfileHelper
  def oauth_active_class provider
    if current_user.provider == provider.to_s
      'active'
    end
  end

  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?
  end
end