1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 00:05:16 +00:00

Can add members to conversation

This commit is contained in:
2021-03-13 10:52:53 +01:00
parent 5d0ead5889
commit bd73e265cc
2 changed files with 28 additions and 8 deletions

View File

@ -49,6 +49,15 @@ class ConversationsHelper {
return response.getObject()["conversationID"];
}
/// Add a member to a conversation.
///
/// Throws in case of failure
static Future<void> addMember(int convID, int userID) async =>
await APIRequest.withLogin("conversations/addMember")
.addInt("convID", convID)
.addInt("userID", userID)
.execWithThrow();
/// Remove a member from a conversation.
///
/// Throws in case of failure