Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/web_hooks/log_destroy_service.rb')
-rw-r--r--app/services/web_hooks/log_destroy_service.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/services/web_hooks/log_destroy_service.rb b/app/services/web_hooks/log_destroy_service.rb
new file mode 100644
index 00000000000..8a5d214a95e
--- /dev/null
+++ b/app/services/web_hooks/log_destroy_service.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+module WebHooks
+ class LogDestroyService
+ BATCH_SIZE = 1000
+
+ def initialize(web_hook_id)
+ @web_hook_id = web_hook_id
+ end
+
+ def execute
+ next while WebHookLog.delete_batch_for(@web_hook_id, batch_size: BATCH_SIZE)
+
+ ServiceResponse.success
+ rescue StandardError => ex
+ ServiceResponse.error(message: ex.message)
+ end
+ end
+end