gitlabhq/app/models/system_hook.rb
2012-07-19 00:25:10 +03:00

14 lines
223 B
Ruby

class SystemHook < WebHook
def async_execute(data)
Resque.enqueue(SystemHookWorker, id, data)
end
def self.all_hooks_fire(data)
SystemHook.all.each do |sh|
sh.async_execute data
end
end
end