chore: update

This commit is contained in:
mahyargdz
2025-07-30 13:17:56 +03:30
parent 028d0d202e
commit 9298411313
2 changed files with 2 additions and 2 deletions
@@ -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,
@@ -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`,
},
});
}