]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+my-account/my-account-routing.module.ts
refactor 404 page
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-routing.module.ts
index 91b464f75e9adca112b48a2abe9ebcd27a76ae26..e2f8660fb27b31e55f7ad1b710be5b3c37e9db06 100644 (file)
@@ -2,12 +2,13 @@ import { NgModule } from '@angular/core'
 import { RouterModule, Routes } from '@angular/router'
 import { MetaGuard } from '@ngx-meta/core'
 import { LoginGuard } from '../core'
-import { MyAccountComponent } from './my-account.component'
+import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component'
+import { MyAccountBlocklistComponent } from './my-account-blocklist/my-account-blocklist.component'
+import { MyAccountServerBlocklistComponent } from './my-account-blocklist/my-account-server-blocklist.component'
+import { MyAccountNotificationsComponent } from './my-account-notifications/my-account-notifications.component'
 import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
-import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
-import { MyAccountVideoChannelsComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channels.component'
-import { MyAccountVideoChannelCreateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-create.component'
-import { MyAccountVideoChannelUpdateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-update.component'
+import { MyAccountComponent } from './my-account.component'
+import { MyAccountApplicationsComponent } from './my-account-applications/my-account-applications.component'
 
 const myAccountRoutes: Routes = [
   {
@@ -25,43 +26,105 @@ const myAccountRoutes: Routes = [
         component: MyAccountSettingsComponent,
         data: {
           meta: {
-            title: 'Account settings'
+            title: $localize`Account settings`
           }
         }
       },
+
       {
         path: 'video-channels',
-        component: MyAccountVideoChannelsComponent,
+        redirectTo: '/my-library/video-channels',
+        pathMatch: 'full'
+      },
+
+      {
+        path: 'video-playlists',
+        redirectTo: '/my-library/video-playlists',
+        pathMatch: 'full'
+      },
+      {
+        path: 'video-playlists/create',
+        redirectTo: '/my-library/video-playlists/create',
+        pathMatch: 'full'
+      },
+      {
+        path: 'video-playlists/:videoPlaylistId',
+        redirectTo: '/my-library/video-playlists/:videoPlaylistId',
+        pathMatch: 'full'
+      },
+      {
+        path: 'video-playlists/update/:videoPlaylistId',
+        redirectTo: '/my-library/video-playlists/update/:videoPlaylistId',
+        pathMatch: 'full'
+      },
+
+      {
+        path: 'videos',
+        redirectTo: '/my-library/videos',
+        pathMatch: 'full'
+      },
+      {
+        path: 'video-imports',
+        redirectTo: '/my-library/video-imports',
+        pathMatch: 'full'
+      },
+      {
+        path: 'subscriptions',
+        redirectTo: '/my-library/subscriptions',
+        pathMatch: 'full'
+      },
+      {
+        path: 'ownership',
+        redirectTo: '/my-library/ownership',
+        pathMatch: 'full'
+      },
+      {
+        path: 'blocklist/accounts',
+        component: MyAccountBlocklistComponent,
         data: {
           meta: {
-            title: 'Account video channels'
+            title: $localize`Muted accounts`
           }
         }
       },
       {
-        path: 'video-channels/create',
-        component: MyAccountVideoChannelCreateComponent,
+        path: 'blocklist/servers',
+        component: MyAccountServerBlocklistComponent,
         data: {
           meta: {
-            title: 'Create new video channel'
+            title: $localize`Muted servers`
           }
         }
       },
       {
-        path: 'video-channels/update/:videoChannelId',
-        component: MyAccountVideoChannelUpdateComponent,
+        path: 'history/videos',
+        redirectTo: '/my-library/history/videos',
+        pathMatch: 'full'
+      },
+      {
+        path: 'notifications',
+        component: MyAccountNotificationsComponent,
         data: {
           meta: {
-            title: 'Update video channel'
+            title: $localize`Notifications`
           }
         }
       },
       {
-        path: 'videos',
-        component: MyAccountVideosComponent,
+        path: 'abuses',
+        component: MyAccountAbusesListComponent,
+        data: {
+          meta: {
+            title: $localize`My abuse reports`
+          }
+        }
+      },
+      {
+        path: 'applications',
+        component: MyAccountApplicationsComponent,
         data: {
           meta: {
-            title: 'Account videos'
+            title: $localize`Applications`
           }
         }
       }