]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/videos/videos-routing.module.ts
Fix admin access to moderators
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos-routing.module.ts
index 538a43c6dc3c486548dd5dd4947d8fa8efaa58ae..58988ffd1a5c5f59d8726769ba6ea0529ffad36a 100644 (file)
@@ -5,6 +5,8 @@ import { MetaGuard } from '@ngx-meta/core'
 import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component'
 import { VideoTrendingComponent } from './video-list/video-trending.component'
 import { VideosComponent } from './videos.component'
+import { VideoUserSubscriptionsComponent } from '@app/videos/video-list/video-user-subscriptions.component'
+import { VideoOverviewComponent } from '@app/videos/video-list/video-overview.component'
 
 const videosRoutes: Routes = [
   {
@@ -13,9 +15,13 @@ const videosRoutes: Routes = [
     canActivateChild: [ MetaGuard ],
     children: [
       {
-        path: 'list',
-        pathMatch: 'full',
-        redirectTo: 'recently-added'
+        path: 'overview',
+        component: VideoOverviewComponent,
+        data: {
+          meta: {
+            title: 'Videos overview'
+          }
+        }
       },
       {
         path: 'trending',
@@ -35,6 +41,15 @@ const videosRoutes: Routes = [
           }
         }
       },
+      {
+        path: 'subscriptions',
+        component: VideoUserSubscriptionsComponent,
+        data: {
+          meta: {
+            title: 'Subscriptions'
+          }
+        }
+      },
       {
         path: 'local',
         component: VideoLocalComponent,