2015-04-26 12:48:37 +05:30
|
|
|
class ProjectServiceWorker
|
2018-03-17 18:26:18 +05:30
|
|
|
include ApplicationWorker
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
sidekiq_options dead: false
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
def perform(hook_id, data)
|
|
|
|
data = data.with_indifferent_access
|
|
|
|
Service.find(hook_id).execute(data)
|
|
|
|
end
|
|
|
|
end
|