summaryrefslogtreecommitdiff
path: root/app/services/protected_branches/destroy_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/protected_branches/destroy_service.rb')
-rw-r--r--app/services/protected_branches/destroy_service.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/services/protected_branches/destroy_service.rb b/app/services/protected_branches/destroy_service.rb
index a32a867491e..011dbf3515d 100644
--- a/app/services/protected_branches/destroy_service.rb
+++ b/app/services/protected_branches/destroy_service.rb
@@ -5,7 +5,10 @@ module ProtectedBranches
def execute(protected_branch)
raise Gitlab::Access::AccessDeniedError unless can?(current_user, :destroy_protected_branch, protected_branch)
- protected_branch.destroy.tap { refresh_cache }
+ protected_branch.destroy.tap do
+ refresh_cache
+ after_execute
+ end
end
end
end