debian-mirror-gitlab/app/workers/system_hook_push_worker.rb
2021-10-27 15:23:28 +05:30

15 lines
339 B
Ruby

# frozen_string_literal: true
class SystemHookPushWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
data_consistency :always
sidekiq_options retry: 3
feature_category :source_code_management
def perform(push_data, hook_id)
SystemHooksService.new.execute_hooks(push_data, hook_id)
end
end