Merge pull request #928 from matrix-org/luke/new-guest-access-inidicate-joining-early

Use RVS to indicate "joining" when setting a mxid
This commit is contained in:
Matthew Hodgson
2017-05-26 17:08:34 +01:00
committed by GitHub
2 changed files with 20 additions and 5 deletions
+10 -1
View File
@@ -58,7 +58,16 @@ class RoomViewStore extends Store {
case 'view_room':
this._viewRoom(payload);
break;
case 'will_join':
this._setState({
joining: true,
});
break;
case 'cancel_join':
this._setState({
joining: false,
});
break;
// join_room:
// - opts: options for joinRoom
case 'join_room':