debian-mirror-gitlab/app/services/protected_branches/destroy_service.rb
2018-05-09 12:01:36 +05:30

9 lines
263 B
Ruby

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