mirror of
https://github.com/docmost/docmost.git
synced 2025-11-12 19:22:39 +10:00
* add delete user endpoint (server) * delete user (UI) * prevent token generation * more checks
23 lines
633 B
TypeScript
23 lines
633 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',
|
|
|
|
DELETE_USER_AVATARS = 'delete-user-avatars',
|
|
|
|
PAGE_BACKLINKS = 'page-backlinks',
|
|
|
|
STRIPE_SEATS_SYNC = 'sync-stripe-seats',
|
|
TRIAL_ENDED = 'trial-ended',
|
|
WELCOME_EMAIL = 'welcome-email',
|
|
FIRST_PAYMENT_EMAIL = 'first-payment-email',
|
|
}
|