mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 13:16:09 +10:00
11 lines
217 B
Ruby
11 lines
217 B
Ruby
class ProjectServiceWorker
|
|
include Sidekiq::Worker
|
|
|
|
sidekiq_options queue: :project_web_hook
|
|
|
|
def perform(hook_id, data)
|
|
data = data.with_indifferent_access
|
|
Service.find(hook_id).execute(data)
|
|
end
|
|
end
|