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:
Diffstat (limited to 'app/services/protected_branches/api_service.rb')
-rw-r--r--app/services/protected_branches/api_service.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/services/protected_branches/api_service.rb b/app/services/protected_branches/api_service.rb
index b8fe9bac13e..0a7777c7fed 100644
--- a/app/services/protected_branches/api_service.rb
+++ b/app/services/protected_branches/api_service.rb
@@ -3,11 +3,11 @@
module ProtectedBranches
class ApiService < ProtectedBranches::BaseService
def create
- ::ProtectedBranches::CreateService.new(@project, @current_user, protected_branch_params).execute
+ ::ProtectedBranches::CreateService.new(project_or_group, @current_user, protected_branch_params).execute
end
def update(protected_branch)
- ::ProtectedBranches::UpdateService.new(@project, @current_user,
+ ::ProtectedBranches::UpdateService.new(project_or_group, @current_user,
protected_branch_params(with_defaults: false)).execute(protected_branch)
end
@@ -36,4 +36,4 @@ protected_branch_params(with_defaults: false)).execute(protected_branch)
end
end
-ProtectedBranches::ApiService.prepend_mod_with('ProtectedBranches::ApiService')
+ProtectedBranches::ApiService.prepend_mod