public room.id property, needed for session.rooms updater

This commit is contained in:
Bruno Windels 2019-02-26 23:27:06 +01:00
parent 841f280d3c
commit c8d5b4483a

View file

@ -29,4 +29,8 @@ export default class Room extends EventEmitter {
get name() {
return this._summary.name;
}
get id() {
return this._roomId;
}
}