This commit is contained in:
kolaente 2020-05-20 23:05:34 +02:00
parent 433286ad4d
commit 8ca58130ac
Signed by: konrad
GPG Key ID: F40E70337AB24C9B

View File

@ -282,21 +282,5 @@ func (m *Migration) Migrate(u *user.User) (err error) {
log.Debugf("[Todoist Migration] Done inserting data for user %d", u.ID)
log.Debugf("[Todoist Migration] Todoist migration done for user %d", u.ID)
//// 1. Get all labels and put them in a map for easier retrieval later on
//labels := make(map[int64]*label)
//
// 2. Get all projects
// 3. Get all lists
// 4. Get all tasks
// Put all root tasks in a seperate list?
// 5. Get all notes for all tasks and set them as description
// -> Notes contain file attachments, these need to also be added to the task
// 6. Get all reminders
// 7. Get all due dates?
// -> Reccurring also happens here
return nil
}