summaryrefslogtreecommitdiff
path: root/lib/gitlab/checks/snippet_check.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-03-17 06:09:21 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-03-17 06:09:21 +0000
commitc8df22c555ab707a705e57c4257fd3ed1ce7c3b0 (patch)
tree009fb7c1ff12a6192921212cae404b790fd7d66b /lib/gitlab/checks/snippet_check.rb
parent9345f69894862e02f3491ea3136c3ed2b23fd5b8 (diff)
downloadgitlab-ce-c8df22c555ab707a705e57c4257fd3ed1ce7c3b0.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/checks/snippet_check.rb')
-rw-r--r--lib/gitlab/checks/snippet_check.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/gitlab/checks/snippet_check.rb b/lib/gitlab/checks/snippet_check.rb
index 8bb6c576204..bcecd0fc251 100644
--- a/lib/gitlab/checks/snippet_check.rb
+++ b/lib/gitlab/checks/snippet_check.rb
@@ -20,14 +20,11 @@ module Gitlab
@logger.append_message("Running checks for ref: #{@branch_name || @tag_name}")
end
- def exec
+ def validate!
if creation? || deletion?
raise GitAccess::ForbiddenError, ERROR_MESSAGES[:create_delete_branch]
end
- # TODO: https://gitlab.com/gitlab-org/gitlab/issues/205628
- # Check operation will not result in more than one file in the repository
-
true
end