summaryrefslogtreecommitdiff
path: root/lib/gitlab/checks
diff options
context:
space:
mode:
authorAdam Niedzielski <adamsunday@gmail.com>2017-03-13 12:31:27 +0100
committerAdam Niedzielski <adamsunday@gmail.com>2017-03-13 12:31:27 +0100
commit47270e1cfdee8e54bc7cc7f4b374ce795a1797fc (patch)
tree65d155525b14eb2d9bb4dfc4d341c645e58ca387 /lib/gitlab/checks
parent32da7602686f2b8161175d82b121deb9e01b2db5 (diff)
downloadgitlab-ce-47270e1cfdee8e54bc7cc7f4b374ce795a1797fc.tar.gz
Backport changes from gitlab-org/gitlab-ee!1406adam-backport-ee-1406
Diffstat (limited to 'lib/gitlab/checks')
-rw-r--r--lib/gitlab/checks/change_access.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/gitlab/checks/change_access.rb b/lib/gitlab/checks/change_access.rb
index 273118135a9..c85f79127bc 100644
--- a/lib/gitlab/checks/change_access.rb
+++ b/lib/gitlab/checks/change_access.rb
@@ -1,16 +1,20 @@
module Gitlab
module Checks
class ChangeAccess
- attr_reader :user_access, :project, :skip_authorization
+ # protocol is currently used only in EE
+ attr_reader :user_access, :project, :skip_authorization, :protocol
def initialize(
- change, user_access:, project:, env: {}, skip_authorization: false)
+ change, user_access:, project:, env: {}, skip_authorization: false,
+ protocol:
+ )
@oldrev, @newrev, @ref = change.values_at(:oldrev, :newrev, :ref)
@branch_name = Gitlab::Git.branch_name(@ref)
@user_access = user_access
@project = project
@env = env
@skip_authorization = skip_authorization
+ @protocol = protocol
end
def exec