This commit is contained in:
Benimautner 2023-12-03 21:21:35 +01:00
commit 045bc6f668
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ class TaskAPIService extends APIService implements TaskService {
@override
Future<Task?> add(int projectId, Task task) {
return client
.put('/projects/$projectId', body: task.toJSON())
.put('/projects/$projectId/tasks', body: task.toJSON())
.then((response) {
if (response == null) return null;
return Task.fromJson(response.body);