Display room messages and other events

This commit is contained in:
miruka
2019-04-14 12:56:30 -04:00
parent 5c8fd4500d
commit 9c66166c4f
16 changed files with 340 additions and 110 deletions

View File

@@ -17,9 +17,9 @@ Controls1.SplitView {
function show_page(componentName) {
pageStack.replace(componentName + ".qml")
}
function show_room(user_obj, room_obj) {
function show_room(user_id, room_obj) {
pageStack.replace(
"chat/Root.qml", { user: user_obj, room: room_obj }
"chat/Root.qml", { user_id: user_id, room: room_obj }
)
}