gitlab-org--gitlab-foss/app/services/protected_branches/update_service.rb

15 lines
410 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_if_ee('EE::ProtectedBranches::UpdateService')