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`, }, }); }