X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fapp-routing.module.ts;h=04c53548eb375999361ab90a478ed9964450bcaf;hb=61b909b9bf849516f30dab2bf5977acfbbddc5c6;hp=f31b51e2381e8226c59e69df90164e76067a9b4f;hpb=63c4db6d71b98523753c51747e308682d9a2e8a0;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/app-routing.module.ts b/client/src/app/app-routing.module.ts index f31b51e23..04c53548e 100644 --- a/client/src/app/app-routing.module.ts +++ b/client/src/app/app-routing.module.ts @@ -1,17 +1,28 @@ import { NgModule } from '@angular/core' -import { Routes, RouterModule } from '@angular/router' +import { RouterModule, Routes } from '@angular/router' import { PreloadSelectedModulesList } from './core' const routes: Routes = [ - { - path: '', - redirectTo: '/videos/trending', - pathMatch: 'full' - }, { 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: '**', + loadChildren: './+page-not-found/page-not-found.module#PageNotFoundModule' } ] @@ -22,7 +33,9 @@ const routes: Routes = [ preloadingStrategy: PreloadSelectedModulesList }) ], - providers: [ PreloadSelectedModulesList ], + providers: [ + PreloadSelectedModulesList + ], exports: [ RouterModule ] }) export class AppRoutingModule {}