diff --git a/src/matrix/room/room.js b/src/matrix/room/room.js index 8a33f758..8ec39974 100644 --- a/src/matrix/room/room.js +++ b/src/matrix/room/room.js @@ -29,4 +29,8 @@ export default class Room extends EventEmitter { get name() { return this._summary.name; } + + get id() { + return this._roomId; + } }