fix hot bugs.

This commit is contained in:
Ahmed Bouhuolia
2020-04-26 03:09:33 +02:00
parent d14ff872d4
commit e01ad95ac3
31 changed files with 251 additions and 350 deletions

View File

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