diff --git a/dmp-frontend/src/app/core/services/inapp-notification/inapp-notification.service.ts b/dmp-frontend/src/app/core/services/inapp-notification/inapp-notification.service.ts index 4fde1247d..bcc3c2855 100644 --- a/dmp-frontend/src/app/core/services/inapp-notification/inapp-notification.service.ts +++ b/dmp-frontend/src/app/core/services/inapp-notification/inapp-notification.service.ts @@ -16,7 +16,7 @@ export class InAppNotificationService { constructor(private http: BaseHttpV2Service, private configurationService: ConfigurationService) { } - private get apiBase(): string { return `${this.configurationService.notificationServiceAddress}api/inapp-notification`; } + private get apiBase(): string { return `${this.configurationService.notificationServiceAddress}api/notification/inapp-notification`; } query(q: InAppNotificationLookup): Observable> { diff --git a/dmp-frontend/src/app/core/services/notification-template/notification-template.service.ts b/dmp-frontend/src/app/core/services/notification-template/notification-template.service.ts index 19647d062..a8fdd3df0 100644 --- a/dmp-frontend/src/app/core/services/notification-template/notification-template.service.ts +++ b/dmp-frontend/src/app/core/services/notification-template/notification-template.service.ts @@ -15,7 +15,7 @@ export class NotificationTemplateService { constructor(private http: BaseHttpV2Service, private configurationService: ConfigurationService) { } - private get apiBase(): string { return `${this.configurationService.notificationServiceAddress}api/notification-template`; } + private get apiBase(): string { return `${this.configurationService.notificationServiceAddress}api/notification/notification-template`; } query(q: NotificationTemplateLookup): Observable> { const url = `${this.apiBase}/query`;