WebHook
# File app/models/system_hook.rb, line 2 def self.all_hooks_fire(data) SystemHook.all.each do |sh| sh.async_execute data end end
# File app/models/system_hook.rb, line 8 def async_execute(data) Resque.enqueue(SystemHookWorker, id, data) end