This commit is contained in:
2020-04-09 21:11:01 -04:00
parent 74f3a621ca
commit 49275681fd
10 changed files with 112 additions and 25 deletions

View File

@@ -39,7 +39,7 @@ namespace Habitica.Todoist.Integration.Function.Sync
var items = await todoistService.ReadItemChanges();
// perform actions
await habiticaService.AddTasks(items.WhereAdded());
await habiticaService.Add(items.WhereAdded());
await habiticaService.UpdateTasks(items.WhereUpdated());
await habiticaService.CompleteTasks(items.WhereCompleted());
await habiticaService.DeleteTasks(items.WhereDeleted());