debian-mirror-gitlab/app/services/protected_branches/update_service.rb
2021-06-08 01:23:25 +05:30

14 lines
409 B
Ruby

# frozen_string_literal: true
module ProtectedBranches
class UpdateService < BaseService
def execute(protected_branch)
raise Gitlab::Access::AccessDeniedError unless can?(current_user, :update_protected_branch, protected_branch)
protected_branch.update(params)
protected_branch
end
end
end
ProtectedBranches::UpdateService.prepend_mod_with('ProtectedBranches::UpdateService')