frontend: update getProfile API endpoint to use users path

This commit is contained in:
juancarmore 2025-06-09 22:41:15 +02:00
parent 89295dda93
commit a86e1a4a08

View File

@ -103,7 +103,7 @@ export class HttpService {
}
getProfile(): Promise<User> {
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 }> {