WIP feature/Register

This commit is contained in:
elforjani3
2020-04-23 21:11:44 +02:00
parent 225a1b741c
commit 7e6b66fb74
10 changed files with 470 additions and 30 deletions

View File

@@ -17,11 +17,34 @@ export default [
loader: () => import('containers/Authentication/Register'),
}),
},
{
path: `${BASE_URL}/send_reset_password`,
name: 'auth.reset_password',
component: LazyLoader({
loader: () => import('containers/Authentication/SendResetPassword'),
}),
},
{
path: `${BASE_URL}/reset_password`,
name: 'auth.reset_password',
name: 'auth.send.reset_password',
component: LazyLoader({
loader: () => import('containers/Authentication/ResetPassword'),
}),
},
{
path: `${BASE_URL}/send_invite`,
name: 'auth.send_invite',
component: LazyLoader({
loader: () => import('containers/Authentication/SendInvite'),
}),
},
{
path: `${BASE_URL}/invite/:token`,
name: 'auth.invite',
component: LazyLoader({
loader: () => import('containers/Authentication/Invite'),
}),
},
];