]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/app-routing.module.ts
Fix forgot password message regarding email
[github/Chocobozzz/PeerTube.git] / client / src / app / app-routing.module.ts
index 0f948434410ad488b80a77a6c90ce68134c6f947..30e615b3ed0a9158762cc32db7b3fd2ebd42609b 100644 (file)
@@ -1,17 +1,37 @@
 import { NgModule } from '@angular/core'
-import { Routes, RouterModule } from '@angular/router'
+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: 'about',
+    loadChildren: './+about/about.module#AboutModule'
+  },
   {
     path: '',
-    redirectTo: '/videos/list',
-    pathMatch: 'full'
+    component: AppComponent // Avoid 404, app component will redirect dynamically
   },
   {
-    path: 'admin',
-    loadChildren: './+admin#AdminModule'
+    path: '**',
+    loadChildren: './+page-not-found/page-not-found.module#PageNotFoundModule'
   }
 ]
 
@@ -22,7 +42,9 @@ const routes: Routes = [
       preloadingStrategy: PreloadSelectedModulesList
     })
   ],
-  providers: [ PreloadSelectedModulesList ],
+  providers: [
+    PreloadSelectedModulesList
+  ],
   exports: [ RouterModule ]
 })
 export class AppRoutingModule {}