more path fixing

This commit is contained in:
Alexandros Mandilaras 2024-04-11 10:22:46 +03:00
parent 2bb5369a00
commit 0e0e40afeb
2 changed files with 2 additions and 2 deletions

View File

@ -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<QueryResult<InAppNotification>> {

View File

@ -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<QueryResult<NotificationTemplate>> {
const url = `${this.apiBase}/query`;