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_template_created_webho...

11 lines
300 B

# frozen_string_literal: true
class SendTemplateCreatedWebhookRequestJob
include WebhookRequestJob
webhook_request event_type: 'template.created',
record_class: Template,
record_id_param: 'template_id',
data: Templates::SerializeForApi
end