debian-mirror-gitlab/app/workers/system_hook_push_worker.rb
2018-03-17 18:26:18 +05:30

7 lines
161 B
Ruby

class SystemHookPushWorker
include ApplicationWorker
def perform(push_data, hook_id)
SystemHooksService.new.execute_hooks(push_data, hook_id)
end
end