mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
433 B
14 lines
433 B
# frozen_string_literal: true
|
|
|
|
class SendFormCompletedWebhookRequestJob
|
|
include WebhookRequestJob
|
|
|
|
webhook_request event_type: 'form.completed',
|
|
record_class: Submitter,
|
|
record_id_param: 'submitter_id',
|
|
data: Submitters::SerializeForWebhook,
|
|
max_attempts: 12,
|
|
ensure_result_generated: true,
|
|
default_url_options: true
|
|
end
|