Bug fix on maintenance.service.ts

This commit is contained in:
Thomas Georgios Giannos 2024-04-04 16:15:37 +03:00
parent fcda984d7e
commit cfd508ccc5
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ export class MaintenanceService extends BaseService {
}
sendTenantTouchEvents(): Observable<any> {
const url = `${this.apiBase}/events/users/touch`;
const url = `${this.apiBase}/events/tenant/touch`;
return this.http
.delete<any>(url).pipe(
catchError((error: any) => throwError(error)));