Class: Fuik::WebhookProcessingJob

Inherits:
ApplicationJob show all
Defined in:
app/jobs/fuik/webhook_processing_job.rb

Instance Method Summary collapse

Instance Method Details

#perform(event_class_name, webhook_event) ⇒ Object



3
4
5
# File 'app/jobs/fuik/webhook_processing_job.rb', line 3

def perform(event_class_name, webhook_event)
  Object.const_get(event_class_name).new(webhook_event).process!
end