summaryrefslogtreecommitdiff
path: root/app/services/protected_branches/update_service.rb
blob: 4d7d498b8ca83aa9ec183df59749c52da045cd27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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