Added space nesting (#52)

This commit is contained in:
unknown 2021-09-03 17:58:01 +05:30
parent 6c1a602bdc
commit 4efc320f23
18 changed files with 368 additions and 91 deletions

View file

@ -8,6 +8,13 @@ function changeTab(tabId) {
});
}
function selectSpace(roomId) {
appDispatcher.dispatch({
type: cons.actions.navigation.SELECT_SPACE,
roomId,
});
}
function selectRoom(roomId) {
appDispatcher.dispatch({
type: cons.actions.navigation.SELECT_ROOM,
@ -72,6 +79,7 @@ function openReadReceipts(roomId, eventId) {
export {
changeTab,
selectSpace,
selectRoom,
togglePeopleDrawer,
openInviteList,