diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-01-11 19:15:43 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-01-11 19:15:43 +0100 |
commit | 947e40bd704da893f6bec84a20bc97cb069cf191 (patch) | |
tree | e22a027807b6d47922693c4172f2d7be45e3109a /src/ChatPage.h | |
parent | Merge pull request #372 from deepbluev7/fix-pr-CI (diff) | |
download | nheko-947e40bd704da893f6bec84a20bc97cb069cf191.tar.xz |
Allow joins via other servers from a matrix: uri
Diffstat (limited to 'src/ChatPage.h')
-rw-r--r-- | src/ChatPage.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ChatPage.h b/src/ChatPage.h index 004bb3e8..0516f87d 100644 --- a/src/ChatPage.h +++ b/src/ChatPage.h @@ -117,6 +117,7 @@ public slots: void leaveRoom(const QString &room_id); void createRoom(const mtx::requests::CreateRoom &req); void joinRoom(const QString &room); + void joinRoomVia(const std::string &room_id, const std::vector<std::string> &via); void inviteUser(QString userid, QString reason); void kickUser(QString userid, QString reason); |