1
0

feat(migration): migration from other services now happens in the background

This commit is contained in:
kolaente
2023-11-09 00:15:11 +01:00
parent 707bb6f89e
commit 46683a2516
10 changed files with 325 additions and 18 deletions

View File

@ -599,7 +599,7 @@ func registerMigrations(m *echo.Group) {
return &todoist.Migration{}
},
}
todoistMigrationHandler.RegisterRoutes(m)
todoistMigrationHandler.RegisterMigrator(m)
}
// Trello
@ -609,7 +609,7 @@ func registerMigrations(m *echo.Group) {
return &trello.Migration{}
},
}
trelloMigrationHandler.RegisterRoutes(m)
trelloMigrationHandler.RegisterMigrator(m)
}
// Microsoft Todo
@ -619,7 +619,7 @@ func registerMigrations(m *echo.Group) {
return &microsofttodo.Migration{}
},
}
microsoftTodoMigrationHandler.RegisterRoutes(m)
microsoftTodoMigrationHandler.RegisterMigrator(m)
}
// Vikunja File Migrator