13 lines
402 B
Ruby
13 lines
402 B
Ruby
# 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
|
|
end
|
|
end
|
|
end
|
|
|
|
ProtectedBranches::DestroyService.prepend_mod_with('ProtectedBranches::DestroyService')
|