mirror of
https://github.com/docmost/docmost.git
synced 2026-05-09 07:43:06 +08:00
f12866cf42
* feat(EE): fulltext search in attachments * feat: global search - search filters - attachments search ui - and more * fix import * fix import * rename migration * add GIN index * fix table name * sanitize
29 lines
841 B
TypeScript
29 lines
841 B
TypeScript
export enum QueueName {
|
|
EMAIL_QUEUE = '{email-queue}',
|
|
ATTACHMENT_QUEUE = '{attachment-queue}',
|
|
GENERAL_QUEUE = '{general-queue}',
|
|
BILLING_QUEUE = '{billing-queue}',
|
|
FILE_TASK_QUEUE = '{file-task-queue}',
|
|
}
|
|
|
|
export enum QueueJob {
|
|
SEND_EMAIL = 'send-email',
|
|
DELETE_SPACE_ATTACHMENTS = 'delete-space-attachments',
|
|
ATTACHMENT_INDEX_CONTENT = 'attachment-index-content',
|
|
ATTACHMENT_INDEXING = 'attachment-indexing',
|
|
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',
|
|
|
|
IMPORT_TASK = 'import-task',
|
|
EXPORT_TASK = 'export-task',
|
|
}
|