debian-mirror-gitlab/app/services/protected_branches/update_service.rb
2018-11-18 11:00:15 +05:30

13 lines
322 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