gitlab-org--gitlab-foss/app/services/protected_branches/destroy_service.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
424 B
Ruby
Raw Normal View History

# 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 { refresh_cache }
end
end
end
ProtectedBranches::DestroyService.prepend_mod_with('ProtectedBranches::DestroyService')