Add latest changes from gitlab-org/gitlab@master

This commit is contained in:
GitLab Bot
2021-05-17 18:10:42 +00:00
parent 68c476dbd8
commit 49bb78aac3
116 changed files with 2293 additions and 388 deletions

View File

@ -12,10 +12,12 @@ class VersionCheck
def self.url
encoded_data = Base64.urlsafe_encode64(data.to_json)
"#{host}?gitlab_info=#{encoded_data}"
"#{host}/check.svg?gitlab_info=#{encoded_data}"
end
def self.host
'https://version.gitlab.com/check.svg'
'https://version.gitlab.com'
end
end
VersionCheck.prepend_mod