/opt/mawid/apps/api/src/reminders
Edit: /opt/mawid/apps/api/src/reminders/reminder-queue.ts (527B)
import { Queue } from 'bullmq';
export const REMINDER_QUEUE = Symbol('REMINDER_QUEUE');
export const REMINDER_QUEUE_NAME = 'reminders';
export type ReminderJobName = 'reminder' | 'risk-check';
export interface ReminderQueueJob {
/** ReminderJob.id for 'reminder'; Appointment.id for 'risk-check'. */
id: string;
}
export type ReminderQueue = Queue
;
// BullMQ custom job ids must not contain ':'
export const riskCheckJobId = (appointmentId: string) => `risk-${appointmentId}`;