add scheduleNotePost queue to dashboard

This commit is contained in:
dakkar 2025-05-08 16:43:52 +01:00
parent 1a19301c90
commit 42f3976b16
3 changed files with 10 additions and 7 deletions

View file

@ -52,6 +52,7 @@ export const QUEUE_TYPES = [
'objectStorage',
'userWebhookDeliver',
'systemWebhookDeliver',
'scheduleNotePost',
] as const;
@Injectable()
@ -783,6 +784,7 @@ export class QueueService {
case 'objectStorage': return this.objectStorageQueue;
case 'userWebhookDeliver': return this.userWebhookDeliverQueue;
case 'systemWebhookDeliver': return this.systemWebhookDeliverQueue;
case 'scheduleNotePost': return this.ScheduleNotePostQueue;
default: throw new Error(`Unrecognized queue type: ${type}`);
}
}