Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiago Botelho <tiagonbotelho@hotmail.com>2018-02-02 18:27:30 +0300
committerTiago Botelho <tiagonbotelho@hotmail.com>2018-02-06 19:52:29 +0300
commit1e56b3f476f9779ec747534e94156a6b8076209c (patch)
treee9374a520232a2d96ef55bf3089dd5350db0a900 /lib/gitlab/checks/project_created.rb
parent839829a7786dd163eccb470bf251211bfb90bd72 (diff)
Moves project creationg to git access check for git push
Diffstat (limited to 'lib/gitlab/checks/project_created.rb')
-rw-r--r--lib/gitlab/checks/project_created.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/gitlab/checks/project_created.rb b/lib/gitlab/checks/project_created.rb
index bd1e204bc81..cec270d6a58 100644
--- a/lib/gitlab/checks/project_created.rb
+++ b/lib/gitlab/checks/project_created.rb
@@ -1,12 +1,12 @@
module Gitlab
module Checks
- class ProjectCreated < BaseProject
+ class ProjectCreated < PostPushMessage
PROJECT_CREATED = "project_created".freeze
def message
- <<~MESSAGE.strip_heredoc
+ <<~MESSAGE
- The private project #{project.full_path} was created.
+ The private project #{project.full_path} was successfully created.
To configure the remote, run:
git remote add origin #{url_to_repo}