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.
docuseal/app/jobs/send_form_viewed_webhook_re...

12 lines
342 B

# frozen_string_literal: true
class SendFormViewedWebhookRequestJob
include WebhookRequestJob
webhook_request event_type: 'form.viewed',
record_class: Submitter,
record_id_param: 'submitter_id',
data: Submitters::SerializeForWebhook,
default_url_options: true
end