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

Can cancel a group membership invitation

This commit is contained in:
2020-05-02 13:59:40 +02:00
parent f179e7e1d5
commit 1227ef283c
3 changed files with 131 additions and 31 deletions

View File

@ -36,6 +36,12 @@ class APIRequest {
if (this.args == null) this.args = Map();
}
APIRequest.withLogin(this.uri, {this.args})
: needLogin = true,
assert(uri != null) {
if (args == null) this.args = Map();
}
APIRequest addString(String name, String value) {
args[name] = value;
return this;