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

Check email address

This commit is contained in:
2020-05-03 14:22:06 +02:00
parent e1795bac03
commit 6e274cae11
4 changed files with 151 additions and 0 deletions

View File

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