From a86e1a4a08ce22176f4ac632122456857011947a Mon Sep 17 00:00:00 2001 From: juancarmore Date: Mon, 9 Jun 2025 22:41:15 +0200 Subject: [PATCH] frontend: update getProfile API endpoint to use users path --- .../src/lib/services/http/http.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/projects/shared-meet-components/src/lib/services/http/http.service.ts b/frontend/projects/shared-meet-components/src/lib/services/http/http.service.ts index 270c34d..b1101b6 100644 --- a/frontend/projects/shared-meet-components/src/lib/services/http/http.service.ts +++ b/frontend/projects/shared-meet-components/src/lib/services/http/http.service.ts @@ -103,7 +103,7 @@ export class HttpService { } getProfile(): Promise { - return this.getRequest(`${this.INTERNAL_API_PATH_PREFIX}/auth/profile`); + return this.getRequest(`${this.INTERNAL_API_PATH_PREFIX}/users/profile`); } generateRecordingToken(roomId: string, secret: string): Promise<{ token: string }> {