From 400e95203dc93b4ac73e640b7a603edb5229d784 Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Mon, 4 Aug 2025 17:36:08 +0200 Subject: [PATCH] frontend: correct API path in updateRoom method to use ROOMS_API --- .../shared-meet-components/src/lib/services/room.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/projects/shared-meet-components/src/lib/services/room.service.ts b/frontend/projects/shared-meet-components/src/lib/services/room.service.ts index 2301be8..8a8b39c 100644 --- a/frontend/projects/shared-meet-components/src/lib/services/room.service.ts +++ b/frontend/projects/shared-meet-components/src/lib/services/room.service.ts @@ -207,7 +207,7 @@ export class RoomService { */ async updateRoom(roomId: string, preferences: MeetRoomPreferences): Promise { this.log.d('Saving room preferences', preferences); - const path = `${this.INTERNAL_ROOMS_API}/${roomId}`; + const path = `${this.ROOMS_API}/${roomId}`; await this.httpService.putRequest(path, preferences); this.roomPreferences = preferences; }