Files
gitlab-foss/app/workers/system_hook_push_worker.rb
2020-02-19 18:09:10 +00:00

12 lines
283 B
Ruby

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