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-10-25 13:09:53 +0300
committerTiago Botelho <tiagonbotelho@hotmail.com>2018-10-25 13:36:26 +0300
commit679d9b21b7aac55796ef59d5694b7d2e0fb40b35 (patch)
tree0ce28ce2326a231aa2c65d324dea9168c17b024d /lib/gitlab/git_post_receive.rb
parentf8ee07d9ee6d01b255902ad976a07beef59a95fb (diff)
Removes idenfitication by commit from Gitlab::Identifier
Before we would need to identify a user when pushing through the GitLab UI. Since this is no longer the case we can remove the identification by commit and instead, use the identify_using_user
Diffstat (limited to 'lib/gitlab/git_post_receive.rb')
-rw-r--r--lib/gitlab/git_post_receive.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gitlab/git_post_receive.rb b/lib/gitlab/git_post_receive.rb
index f5470ffa2da..cf2329e489d 100644
--- a/lib/gitlab/git_post_receive.rb
+++ b/lib/gitlab/git_post_receive.rb
@@ -11,8 +11,8 @@ module Gitlab
@changes = deserialize_changes(changes)
end
- def identify(revision = nil)
- super(identifier, project, revision)
+ def identify
+ super(identifier)
end
def changes_refs