mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-13 06:36:09 +10:00
14 lines
223 B
Ruby
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
|