mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-12 22:09:25 +08:00
swarm: remove conversation, first version
Link removeConversation. For this feature there is two possibilities: + If we are the last member, remove all the files. + If not, wait for another user to sync. Change-Id: I387a20fe93a72524ae701e7e98d66633d91a9ede GitLab: #305
This commit is contained in:

committed by
Adrien Béraud

parent
c582529f2d
commit
03c5b7528f
@ -29,6 +29,7 @@ public:
|
||||
virtual void messageReceived(const std::string& /*accountId*/, const std::string& /* conversationId */, std::map<std::string, std::string> /*message*/){}
|
||||
virtual void conversationRequestReceived(const std::string& /*accountId*/, const std::string& /* conversationId */, std::map<std::string, std::string> /*metadatas*/){}
|
||||
virtual void conversationReady(const std::string& /*accountId*/, const std::string& /* conversationId */){}
|
||||
virtual void conversationRemoved(const std::string& /*accountId*/, const std::string& /* conversationId */){}
|
||||
};
|
||||
%}
|
||||
|
||||
@ -75,4 +76,5 @@ public:
|
||||
virtual void messageReceived(const std::string& /*accountId*/, const std::string& /* conversationId */, std::map<std::string, std::string> /*message*/){}
|
||||
virtual void conversationRequestReceived(const std::string& /*accountId*/, const std::string& /* conversationId */, std::map<std::string, std::string> /*metadatas*/){}
|
||||
virtual void conversationReady(const std::string& /*accountId*/, const std::string& /* conversationId */){}
|
||||
virtual void conversationRemoved(const std::string& /*accountId*/, const std::string& /* conversationId */){}
|
||||
};
|
Reference in New Issue
Block a user