gitlab-org--gitlab-foss/app/services/protected_branches/update_service.rb
James Edwards-Jones 1f7328f8ee Branch unprotection restriction starting point
Explored Policy framework to create something I can use as a starting point.
2018-03-26 01:17:27 +01:00

10 lines
291 B
Ruby

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