Added functions for hadling particular lobbies types to ChatHandler

This commit is contained in:
Konrad 2017-03-25 18:33:35 +01:00
parent 194878a358
commit 8624c9374d
2 changed files with 106 additions and 5 deletions

View file

@ -133,6 +133,10 @@ private:
void handleDistantChatStatus(Request& req, Response& resp);
void handleCloseDistantChatConnexion(Request& req, Response& resp);
void handlePrivateLobbies(Request &req, Response &resp);
void handleSubscribedPublicLobbies(Request &req, Response &resp);
void handleUnsubscribedPublicLobbies(Request &req, Response &resp);
void getPlainText(const std::string& in, std::string &out, std::vector<Triple> &links);
// last parameter is only used for lobbies!
void locked_storeTypingInfo(const ChatId& chat_id, std::string status, RsGxsId lobby_gxs_id = RsGxsId());