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

14 lines
232 B
Ruby

module ProfileHelper
def show_profile_username_tab?
current_user.can_change_username?
end
def show_profile_social_tab?
enabled_social_providers.any?
end
def show_profile_remove_tab?
signup_enabled?
end
end