2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
module ProtectedBranches
|
|
|
|
class UpdateService < BaseService
|
|
|
|
def execute(protected_branch)
|
2018-05-09 12:01:36 +05:30
|
|
|
raise Gitlab::Access::AccessDeniedError unless can?(current_user, :update_protected_branch, protected_branch)
|
2016-09-13 17:45:13 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
protected_branch.update(params)
|
|
|
|
protected_branch
|
2016-09-13 17:45:13 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
ProtectedBranches::UpdateService.prepend_mod_with('ProtectedBranches::UpdateService')
|