X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fapp-routing.module.ts;h=cff37a7d6f187930eb7622881cdac10ce493aa58;hb=7e73f07131a6738b299311448ab4491eb532838a;hp=936912d282fedddb07d171c6ccf593804da68729;hpb=62e62f118d5da57acd3494fece2e8ed357564ffe;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/app-routing.module.ts b/client/src/app/app-routing.module.ts index 936912d28..cff37a7d6 100644 --- a/client/src/app/app-routing.module.ts +++ b/client/src/app/app-routing.module.ts @@ -2,6 +2,7 @@ import { NgModule } from '@angular/core' import { RouterModule, Routes } from '@angular/router' import { PreloadSelectedModulesList } from './core' +import { AppComponent } from '@app/app.component' const routes: Routes = [ { @@ -12,6 +13,10 @@ const routes: Routes = [ path: 'my-account', loadChildren: './+my-account/my-account.module#MyAccountModule' }, + { + path: 'verify-account', + loadChildren: './+verify-account/verify-account.module#VerifyAccountModule' + }, { path: 'accounts', loadChildren: './+accounts/accounts.module#AccountsModule' @@ -19,6 +24,18 @@ const routes: Routes = [ { path: 'video-channels', loadChildren: './+video-channels/video-channels.module#VideoChannelsModule' + }, + { + path: 'about', + loadChildren: './+about/about.module#AboutModule' + }, + { + path: '', + component: AppComponent // Avoid 404, app component will redirect dynamically + }, + { + path: '**', + loadChildren: './+page-not-found/page-not-found.module#PageNotFoundModule' } ] @@ -26,7 +43,8 @@ const routes: Routes = [ imports: [ RouterModule.forRoot(routes, { useHash: Boolean(history.pushState) === false, - preloadingStrategy: PreloadSelectedModulesList + preloadingStrategy: PreloadSelectedModulesList, + anchorScrolling: 'enabled' }) ], providers: [