debian-mirror-gitlab/app/workers/system_hook_push_worker.rb
2018-11-08 19:23:39 +05:30

10 lines
192 B
Ruby

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