2012-07-12 08:36:33 -04:00
|
|
|
class SystemHook < WebHook
|
2012-07-15 08:29:06 -04:00
|
|
|
def self.all_hooks_fire(data)
|
|
|
|
SystemHook.all.each do |sh|
|
|
|
|
sh.async_execute data
|
|
|
|
end
|
|
|
|
end
|
2012-10-08 20:10:04 -04:00
|
|
|
|
|
|
|
def async_execute(data)
|
|
|
|
Resque.enqueue(SystemHookWorker, id, data)
|
|
|
|
end
|
2012-07-12 08:36:33 -04:00
|
|
|
end
|
2012-09-27 02:20:36 -04:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: web_hooks
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# url :string(255)
|
|
|
|
# project_id :integer
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# type :string(255) default("ProjectHook")
|
|
|
|
#
|