summaryrefslogtreecommitdiff
path: root/lib/gitlab/checks
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/checks')
-rw-r--r--lib/gitlab/checks/post_push_message.rb (renamed from lib/gitlab/checks/base_project.rb)2
-rw-r--r--lib/gitlab/checks/project_created.rb2
-rw-r--r--lib/gitlab/checks/project_moved.rb2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/gitlab/checks/base_project.rb b/lib/gitlab/checks/post_push_message.rb
index dd6c007b356..473c0385b34 100644
--- a/lib/gitlab/checks/base_project.rb
+++ b/lib/gitlab/checks/post_push_message.rb
@@ -1,6 +1,6 @@
module Gitlab
module Checks
- class BaseProject
+ class PostPushMessage
def initialize(project, user, protocol)
@project = project
@user = user
diff --git a/lib/gitlab/checks/project_created.rb b/lib/gitlab/checks/project_created.rb
index bd1e204bc81..ac24ff13b2a 100644
--- a/lib/gitlab/checks/project_created.rb
+++ b/lib/gitlab/checks/project_created.rb
@@ -1,6 +1,6 @@
module Gitlab
module Checks
- class ProjectCreated < BaseProject
+ class ProjectCreated < PostPushMessage
PROJECT_CREATED = "project_created".freeze
def message
diff --git a/lib/gitlab/checks/project_moved.rb b/lib/gitlab/checks/project_moved.rb
index eca59e88e24..216d2d6acc3 100644
--- a/lib/gitlab/checks/project_moved.rb
+++ b/lib/gitlab/checks/project_moved.rb
@@ -1,6 +1,6 @@
module Gitlab
module Checks
- class ProjectMoved < BaseProject
+ class ProjectMoved < PostPushMessage
REDIRECT_NAMESPACE = "redirect_namespace".freeze
def initialize(project, user, protocol, redirected_path)