1f7328f8ee
Explored Policy framework to create something I can use as a starting point.
10 lines
291 B
Ruby
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
|