X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bvideo-channels%2Fvideo-channels-routing.module.ts;h=d4872a0a597656ce25d2e27d9ba8ac677201320f;hb=fad0759cab414731060733df74d4244a13b543e1;hp=3ac3533d9e41f9941b5d4249e68f53f0bc3d4196;hpb=73471b1a52f242e86364ffb077ea6cadb3b07ae2;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+video-channels/video-channels-routing.module.ts b/client/src/app/+video-channels/video-channels-routing.module.ts index 3ac3533d9..d4872a0a5 100644 --- a/client/src/app/+video-channels/video-channels-routing.module.ts +++ b/client/src/app/+video-channels/video-channels-routing.module.ts @@ -4,6 +4,7 @@ import { MetaGuard } from '@ngx-meta/core' import { VideoChannelsComponent } from './video-channels.component' import { VideoChannelVideosComponent } from './video-channel-videos/video-channel-videos.component' import { VideoChannelAboutComponent } from './video-channel-about/video-channel-about.component' +import { VideoChannelPlaylistsComponent } from '@app/+video-channels/video-channel-playlists/video-channel-playlists.component' const videoChannelsRoutes: Routes = [ { @@ -22,6 +23,19 @@ const videoChannelsRoutes: Routes = [ data: { meta: { title: 'Video channel videos' + }, + reuse: { + enabled: true, + key: 'video-channel-videos-list' + } + } + }, + { + path: 'video-playlists', + component: VideoChannelPlaylistsComponent, + data: { + meta: { + title: 'Video channel playlists' } } },