From 5ec8417f4e8aca02916fc8dd0d0bda876092c8c7 Mon Sep 17 00:00:00 2001 From: Thomas Georgios Giannos Date: Thu, 4 Apr 2024 16:16:45 +0300 Subject: [PATCH] Bug fix on maintenance.service.ts --- .../src/app/core/services/maintenance/maintenance.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmp-frontend/src/app/core/services/maintenance/maintenance.service.ts b/dmp-frontend/src/app/core/services/maintenance/maintenance.service.ts index 376e5a29b..e25f63371 100644 --- a/dmp-frontend/src/app/core/services/maintenance/maintenance.service.ts +++ b/dmp-frontend/src/app/core/services/maintenance/maintenance.service.ts @@ -37,7 +37,7 @@ export class MaintenanceService extends BaseService { } sendTenantTouchEvents(): Observable { - const url = `${this.apiBase}/events/tenant/touch`; + const url = `${this.apiBase}/events/tenants/touch`; return this.http .delete(url).pipe( catchError((error: any) => throwError(error)));