frontend: correct API path in updateRoom method to use ROOMS_API
This commit is contained in:
parent
4d76101d1e
commit
400e95203d
@ -207,7 +207,7 @@ export class RoomService {
|
||||
*/
|
||||
async updateRoom(roomId: string, preferences: MeetRoomPreferences): Promise<void> {
|
||||
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;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user