5 lines
141 B
Ruby
5 lines
141 B
Ruby
class SystemHook < WebHook
|
|
def async_execute(data, hook_name)
|
|
Sidekiq::Client.enqueue(SystemHookWorker, id, data, hook_name)
|
|
end
|
|
end
|