Add Wunderlist migration (#46)
Complete migration flow Add migration in progress animation Add handling wunderlist migration flow Basic migration init structure Add migrator structure Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/46
This commit is contained in:
@ -23,6 +23,9 @@ import EditTeamComponent from '@/components/teams/EditTeam'
|
||||
import NewTeamComponent from '@/components/teams/NewTeam'
|
||||
// Label Handling
|
||||
import ListLabelsComponent from '@/components/labels/ListLabels'
|
||||
// Migration
|
||||
import MigrationComponent from '../components/migrator/migrate'
|
||||
import WunderlistMigrationComponent from '../components/migrator/wunderlist'
|
||||
|
||||
Vue.use(Router)
|
||||
|
||||
@ -135,5 +138,15 @@ export default new Router({
|
||||
name: 'linkShareAuth',
|
||||
component: LinkShareAuthComponent
|
||||
},
|
||||
{
|
||||
path: '/migrate',
|
||||
name: 'migrateStart',
|
||||
component: MigrationComponent,
|
||||
},
|
||||
{
|
||||
path: '/migrate/wunderlist',
|
||||
name: 'migrateWunderlist',
|
||||
component: WunderlistMigrationComponent,
|
||||
},
|
||||
]
|
||||
})
|
Reference in New Issue
Block a user