From 92984113135b51ca0fc1a217893f4247ed42a19c Mon Sep 17 00:00:00 2001 From: mahyargdz Date: Wed, 30 Jul 2025 13:17:56 +0330 Subject: [PATCH] chore: update --- src/modules/notifications/notifications.module.ts | 2 +- src/modules/notifications/services/notifications.service.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/notifications/notifications.module.ts b/src/modules/notifications/notifications.module.ts index 022ff47..273586c 100755 --- a/src/modules/notifications/notifications.module.ts +++ b/src/modules/notifications/notifications.module.ts @@ -18,7 +18,7 @@ import { UtilsModule } from "../utils/utils.module"; @Module({ imports: [ - HttpModule, + HttpModule.register({ timeout: 10000 }), MikroOrmModule.forFeature([Notification, NotificationSetting, User]), BullModule.registerQueue({ name: NOTIFICATION.QUEUE_NAME }), UtilsModule, diff --git a/src/modules/notifications/services/notifications.service.ts b/src/modules/notifications/services/notifications.service.ts index 16fea92..8351a01 100755 --- a/src/modules/notifications/services/notifications.service.ts +++ b/src/modules/notifications/services/notifications.service.ts @@ -49,7 +49,7 @@ export class NotificationsService { title: createNotificationDto.title, body: createNotificationDto.message, notification_click: { - click_url: `${this.configService.getOrThrow("FRONTEND_URL")}/notifications`, + click_url: `${this.configService.getOrThrow("FRONTEND_URL")}/received`, }, }); }