mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 21:26:07 +10:00
10 lines
155 B
Ruby
10 lines
155 B
Ruby
module Ci
|
|
class WebHookWorker
|
|
include Sidekiq::Worker
|
|
|
|
def perform(hook_id, data)
|
|
Ci::WebHook.find(hook_id).execute data
|
|
end
|
|
end
|
|
end
|