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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
901 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2015-02-13 04:31:55 +00:00
module VersionCheckHelper
def show_version_check?
return false unless Gitlab::CurrentSettings.version_check_enabled
return false if User.single_user&.requires_usage_stats_consent?
current_user&.can_read_all_resources?
2015-02-13 04:31:55 +00:00
end
def link_to_version
if Gitlab.pre_release?
commit_link = link_to(Gitlab.revision, source_host_url + namespace_project_commits_path(source_code_group, source_code_project, Gitlab.revision))
[Gitlab::VERSION, content_tag(:small, commit_link)].join(' ').html_safe
else
link_to Gitlab::VERSION, source_host_url + namespace_project_tag_path(source_code_group, source_code_project, "v#{Gitlab::VERSION}")
end
end
def source_host_url
Gitlab::Saas.com_url
end
def source_code_group
'gitlab-org'
end
def source_code_project
'gitlab-foss'
end
2015-02-13 04:31:55 +00:00
end
VersionCheckHelper.prepend_mod