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
678 B
Ruby
33 lines
678 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Checks
|
|
class ProjectCreated < PostPushMessage
|
|
PROJECT_CREATED = "project_created".freeze
|
|
|
|
def message
|
|
<<~MESSAGE
|
|
|
|
The private project #{project.full_path} was successfully created.
|
|
|
|
To configure the remote, run:
|
|
git remote add origin #{url_to_repo}
|
|
|
|
To view the project, visit:
|
|
#{project_url}
|
|
|
|
MESSAGE
|
|
end
|
|
|
|
private
|
|
|
|
def self.message_key(user_id, project_id)
|
|
"#{PROJECT_CREATED}:#{user_id}:#{project_id}"
|
|
end
|
|
|
|
def project_url
|
|
Gitlab::Routing.url_helpers.project_url(project)
|
|
end
|
|
end
|
|
end
|
|
end
|