You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-08-19 16:42:09 +03:00
Added a models directory. Added store, http-api and client files. Slowly transitioning to the architecture outlined in SYJS-5.
15 lines
222 B
JavaScript
15 lines
222 B
JavaScript
"use strict";
|
|
|
|
function Room(roomId) {
|
|
this.roomId = roomId;
|
|
this.name = roomId;
|
|
this.timeline = [];
|
|
this.oldState = null;
|
|
this.currentState = null;
|
|
}
|
|
|
|
/**
|
|
* The Room class.
|
|
*/
|
|
module.exports = Room;
|