X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fapp-routing.module.ts;h=cff37a7d6f187930eb7622881cdac10ce493aa58;hb=b718fd22374d64534bcfe69932cf562894abed6a;hp=46e108cc7992ee644b4993a4a0f112f08fab84df;hpb=74af5a8361f4ccb460001706ce249d50c747f361;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/app-routing.module.ts b/client/src/app/app-routing.module.ts index 46e108cc7..cff37a7d6 100644 --- a/client/src/app/app-routing.module.ts +++ b/client/src/app/app-routing.module.ts @@ -2,31 +2,49 @@ import { NgModule } from '@angular/core' import { RouterModule, Routes } from '@angular/router' import { PreloadSelectedModulesList } from './core' +import { AppComponent } from '@app/app.component' const routes: Routes = [ - // { - // path: 'admin', - // loadChildren: './+admin/admin.module#AdminModule' - // }, - // { - // path: 'my-account', - // loadChildren: './+my-account/my-account.module#MyAccountModule' - // }, - // { - // path: 'accounts', - // loadChildren: './+accounts/accounts.module#AccountsModule' - // }, - // { - // path: 'video-channels', - // loadChildren: './+video-channels/video-channels.module#VideoChannelsModule' - // } + { + path: 'admin', + loadChildren: './+admin/admin.module#AdminModule' + }, + { + 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' + }, + { + 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' + } ] @NgModule({ imports: [ RouterModule.forRoot(routes, { useHash: Boolean(history.pushState) === false, - preloadingStrategy: PreloadSelectedModulesList + preloadingStrategy: PreloadSelectedModulesList, + anchorScrolling: 'enabled' }) ], providers: [