add a hotkey for menu toggling and a secondary hotkey to search
[oweals/peertube.git] / client / src / app / app-routing.module.ts
index 04c53548eb375999361ab90a478ed9964450bcaf..545d6aedab8e257358805f1a87ba87ae4572c188 100644 (file)
@@ -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'
@@ -20,6 +25,14 @@ 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'