Revert "try changing path"

This reverts commit dea932ca95.
This commit is contained in:
Alexandros Mandilaras 2024-04-10 22:33:14 +03:00
parent dea932ca95
commit 1f43bac181
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/notification/inapp-notification`; }
private get apiBase(): string { return `${this.configurationService.notificationServiceAddress}api/inapp-notification`; }
query(q: InAppNotificationLookup): Observable<QueryResult<InAppNotification>> {

View File

@ -38,7 +38,7 @@ import jakarta.transaction.Transactional;
import java.util.*;
@RestController
@RequestMapping(path = "api/notification/inapp-notification")
@RequestMapping(path = "api/inapp-notification")
public class InAppNotificationController {
private static final LoggerService logger = new LoggerService(LoggerFactory.getLogger(InAppNotificationController.class));