debian-mirror-gitlab/app/workers/system_hook_push_worker.rb

12 lines
283 B
Ruby
Raw Normal View History

2018-11-08 19:23:39 +05:30
# frozen_string_literal: true
2020-04-08 14:13:33 +05:30
class SystemHookPushWorker # rubocop:disable Scalability/IdempotentWorker
2018-03-17 18:26:18 +05:30
include ApplicationWorker
2017-08-17 22:00:37 +05:30
2019-12-21 20:55:43 +05:30
feature_category :source_code_management
2017-08-17 22:00:37 +05:30
def perform(push_data, hook_id)
SystemHooksService.new.execute_hooks(push_data, hook_id)
end
end