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.
11 lines
347 B
11 lines
347 B
# frozen_string_literal: true
|
|
|
|
class SendSubmissionArchivedWebhookRequestJob
|
|
include WebhookRequestJob
|
|
|
|
webhook_request event_type: 'submission.archived',
|
|
record_class: Submission,
|
|
record_id_param: 'submission_id',
|
|
data: ->(submission) { submission.as_json(only: %i[id archived_at]) }
|
|
end
|