debian-mirror-gitlab/app/services/protected_branches/destroy_service.rb
2019-12-04 20:38:33 +05:30

14 lines
384 B
Ruby

# frozen_string_literal: true
module ProtectedBranches
class DestroyService < 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_if_ee('EE::ProtectedBranches::DestroyService')