Migration #120

Merged
konrad merged 27 commits from feature/migration into master 2020-01-19 16:52:17 +00:00
1 changed files with 18 additions and 0 deletions
Showing only changes of commit 497c63ceea - Show all commits

View File

@ -221,6 +221,24 @@ func convertWunderlistToVikunja(content *wunderlistContents) (fullVikunjaHierach
// Migrate migrates a user's wunderlist lists, tasks, etc.
func (w *Migration) Migrate(user models.User) error {
// 0. Get api token from oauth user token
// 1. Get all folders
// 2. Get all lists
// 3. Get all tasks for each list
// 3. Get all done tasks for each list
// 4. Get all notes for all lists
// 5. Get all files for all lists
// 6. Get all reminders for all lists
// 7. Get all subtasks for all lists
return nil
}