2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
module ProtectedBranches
|
2021-11-11 11:23:49 +05:30
|
|
|
class DestroyService < ProtectedBranches::BaseService
|
2018-05-09 12:01:36 +05:30
|
|
|
def execute(protected_branch)
|
|
|
|
raise Gitlab::Access::AccessDeniedError unless can?(current_user, :destroy_protected_branch, protected_branch)
|
|
|
|
|
2023-04-23 21:23:45 +05:30
|
|
|
protected_branch.destroy.tap do
|
|
|
|
refresh_cache
|
|
|
|
after_execute
|
|
|
|
end
|
2018-05-09 12:01:36 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
ProtectedBranches::DestroyService.prepend_mod
|