Add user settings (#108)
Add email update Add settings link to menu Add password update route Add password update page Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/108
This commit is contained in:
@ -8,6 +8,7 @@ import LoginComponent from '@/components/user/Login'
|
||||
import RegisterComponent from '@/components/user/Register'
|
||||
import PasswordResetComponent from '@/components/user/PasswordReset'
|
||||
import GetPasswordResetComponent from '@/components/user/RequestPasswordReset'
|
||||
import UserSettingsComponent from '@/components/user/Settings'
|
||||
// List Handling
|
||||
import ShowListComponent from '@/components/lists/ShowList'
|
||||
import NewListComponent from '@/components/lists/NewList'
|
||||
@ -154,5 +155,10 @@ export default new Router({
|
||||
name: 'migrateWunderlist',
|
||||
component: WunderlistMigrationComponent,
|
||||
},
|
||||
{
|
||||
path: '/user/settings',
|
||||
name: 'userSettings',
|
||||
component: UserSettingsComponent,
|
||||
},
|
||||
]
|
||||
})
|
Reference in New Issue
Block a user