Re-implemented getting tasks with the new seperate endpoint #39

Open
konrad wants to merge 34 commits from feature/task-list into master
1 changed files with 4 additions and 1 deletions
Showing only changes of commit e110a4b9eb - Show all commits

View File

@ -14,7 +14,10 @@ class User {
toJSON() => {"id": this.id, "email": this.email, "username": this.username};
String avatarUrl(BuildContext context) {
return VikunjaGlobal.of(context).client.base + "/" + this.username + "/avatar";
return VikunjaGlobal.of(context).client.base +
"/" +
this.username +
"/avatar";
}
}