debian-mirror-gitlab/app/services/protected_branches/destroy_service.rb

14 lines
384 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2018-05-09 12:01:36 +05:30
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
2019-12-04 20:38:33 +05:30
ProtectedBranches::DestroyService.prepend_if_ee('EE::ProtectedBranches::DestroyService')