improve doctor email audit logs

This commit is contained in:
Danel Kungla
2025-10-10 16:14:36 +03:00
parent 6aa5149789
commit f74c5a2fc6
4 changed files with 13 additions and 5 deletions

View File

@@ -19,13 +19,14 @@ export const POST = async (request: NextRequest) => {
}
try {
await sendOpenJobsEmails();
const doctors = await sendOpenJobsEmails();
console.info(
'Successfully sent out open job notification emails to doctors.',
'Successfully sent out open job notification emails to doctors',
);
await createNotificationLog({
action: NotificationAction.DOCTOR_NEW_JOBS,
status: 'SUCCESS',
comment: `doctors that received email: ${doctors}`,
});
return NextResponse.json(
{