mirror of
https://github.com/deltachat/deltachat-android.git
synced 2025-10-03 09:49:21 +02:00
allow to create new unencrypted group
This commit is contained in:
parent
54f2d2e991
commit
d7c3303cec
13 changed files with 60 additions and 11 deletions
|
@ -164,6 +164,10 @@ public class Rpc {
|
|||
return gson.fromJson(getResult("create_broadcast", accountId, chatName), Integer.class);
|
||||
}
|
||||
|
||||
public int createGroupChatUnencrypted(int accountId, String chatName) throws RpcException {
|
||||
return gson.fromJson(getResult("create_group_chat_unencrypted", accountId, chatName), Integer.class);
|
||||
}
|
||||
|
||||
public void setAccountsOrder(List<Integer> order) throws RpcException {
|
||||
getResult("set_accounts_order", order);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue