mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
WIP feature/Register
This commit is contained in:
@@ -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'),
|
||||
}),
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user