e166e5747c
Enable frozen string for the following files: * lib/gitlab/auth/**/*.rb * lib/gitlab/badge/**/*.rb * lib/gitlab/bare_repository_import/**/*.rb * lib/gitlab/bitbucket_import/**/*.rb * lib/gitlab/bitbucket_server_import/**/*.rb * lib/gitlab/cache/**/*.rb * lib/gitlab/checks/**/*.rb Partially addresses #47424.
33 lines
729 B
Ruby
33 lines
729 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Checks
|
|
class ProjectMoved < PostPushMessage
|
|
REDIRECT_NAMESPACE = "redirect_namespace".freeze
|
|
|
|
def initialize(project, user, protocol, redirected_path)
|
|
@redirected_path = redirected_path
|
|
|
|
super(project, user, protocol)
|
|
end
|
|
|
|
def message
|
|
<<~MESSAGE
|
|
Project '#{redirected_path}' was moved to '#{project.full_path}'.
|
|
|
|
Please update your Git remote:
|
|
|
|
git remote set-url origin #{url_to_repo}
|
|
MESSAGE
|
|
end
|
|
|
|
private
|
|
|
|
attr_reader :redirected_path
|
|
|
|
def self.message_key(user_id, project_id)
|
|
"#{REDIRECT_NAMESPACE}:#{user_id}:#{project_id}"
|
|
end
|
|
end
|
|
end
|
|
end
|