debian-mirror-gitlab/lib/gitlab/checks/project_created.rb

34 lines
671 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
module Gitlab
module Checks
class ProjectCreated < PostPushMessage
2019-12-04 20:38:33 +05:30
PROJECT_CREATED = "project_created"
2018-03-17 18:26:18 +05:30
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