summaryrefslogtreecommitdiff
path: root/app/services/protected_branches/destroy_service.rb
blob: 011dbf3515d06c29a7bba8ba5339b48ab763f682 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module ProtectedBranches
  class DestroyService < ProtectedBranches::BaseService
    def execute(protected_branch)
      raise Gitlab::Access::AccessDeniedError unless can?(current_user, :destroy_protected_branch, protected_branch)

      protected_branch.destroy.tap do
        refresh_cache
        after_execute
      end
    end
  end
end

ProtectedBranches::DestroyService.prepend_mod