Update angular

This commit is contained in:
Chocobozzz 2019-07-24 16:05:59 +02:00
parent a353a4d77c
commit f36da21e40
No known key found for this signature in database
GPG key ID: 583A612D890159BE
45 changed files with 1317 additions and 850 deletions

View file

@ -8,31 +8,31 @@ import { CustomReuseStrategy } from '@app/core/routing/custom-reuse-strategy'
const routes: Routes = [
{
path: 'admin',
loadChildren: './+admin/admin.module#AdminModule'
loadChildren: () => import('./+admin/admin.module').then(m => m.AdminModule)
},
{
path: 'my-account',
loadChildren: './+my-account/my-account.module#MyAccountModule'
loadChildren: () => import('./+my-account/my-account.module').then(m => m.MyAccountModule)
},
{
path: 'verify-account',
loadChildren: './+signup/+verify-account/verify-account.module#VerifyAccountModule'
loadChildren: () => import('./+signup/+verify-account/verify-account.module').then(m => m.VerifyAccountModule)
},
{
path: 'accounts',
loadChildren: './+accounts/accounts.module#AccountsModule'
loadChildren: () => import('./+accounts/accounts.module').then(m => m.AccountsModule)
},
{
path: 'video-channels',
loadChildren: './+video-channels/video-channels.module#VideoChannelsModule'
loadChildren: () => import('./+video-channels/video-channels.module').then(m => m.VideoChannelsModule)
},
{
path: 'about',
loadChildren: './+about/about.module#AboutModule'
loadChildren: () => import('./+about/about.module').then(m => m.AboutModule)
},
{
path: 'signup',
loadChildren: './+signup/+register/register.module#RegisterModule'
loadChildren: () => import('./+signup/+register/register.module').then(m => m.RegisterModule)
},
{
path: '',
@ -40,7 +40,7 @@ const routes: Routes = [
},
{
path: '**',
loadChildren: './+page-not-found/page-not-found.module#PageNotFoundModule'
loadChildren: () => import('./+page-not-found/page-not-found.module').then(m => m.PageNotFoundModule)
}
]