mirror of
https://github.com/docmost/docmost.git
synced 2025-11-13 17:22:37 +10:00
* Set page history to 5 minutes interval * * Configure default queue options * sync * * stripe seats sync (cloud)
18 lines
472 B
TypeScript
18 lines
472 B
TypeScript
export enum QueueName {
|
|
EMAIL_QUEUE = '{email-queue}',
|
|
ATTACHMENT_QUEUE = '{attachment-queue}',
|
|
GENERAL_QUEUE = '{general-queue}',
|
|
BILLING_QUEUE = '{billing-queue}',
|
|
}
|
|
|
|
export enum QueueJob {
|
|
SEND_EMAIL = 'send-email',
|
|
DELETE_SPACE_ATTACHMENTS = 'delete-space-attachments',
|
|
DELETE_PAGE_ATTACHMENTS = 'delete-page-attachments',
|
|
PAGE_CONTENT_UPDATE = 'page-content-update',
|
|
|
|
PAGE_BACKLINKS = 'page-backlinks',
|
|
|
|
STRIPE_SEATS_SYNC = 'sync-stripe-seats',
|
|
}
|