aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-routing.module.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-03-14 14:05:36 +0100
committerChocobozzz <chocobozzz@cpy.re>2019-03-18 11:17:59 +0100
commitbce47964f6241ae56f61089d144b29eb9b5da6d3 (patch)
treecad0a5ef17bc7851d483969453f7b8c2e6edad57 /client/src/app/+my-account/my-account-routing.module.ts
parent2a10aab3d7634a252a2acc946974df903e6025be (diff)
downloadPeerTube-bce47964f6241ae56f61089d144b29eb9b5da6d3.tar.gz
PeerTube-bce47964f6241ae56f61089d144b29eb9b5da6d3.tar.zst
PeerTube-bce47964f6241ae56f61089d144b29eb9b5da6d3.zip
Add video channel view
Diffstat (limited to 'client/src/app/+my-account/my-account-routing.module.ts')
-rw-r--r--client/src/app/+my-account/my-account-routing.module.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/client/src/app/+my-account/my-account-routing.module.ts b/client/src/app/+my-account/my-account-routing.module.ts
index 3f921b13f..07557a029 100644
--- a/client/src/app/+my-account/my-account-routing.module.ts
+++ b/client/src/app/+my-account/my-account-routing.module.ts
@@ -85,20 +85,20 @@ const myAccountRoutes: Routes = [
85 } 85 }
86 }, 86 },
87 { 87 {
88 path: 'video-playlists/:videoPlaylistId', 88 path: 'video-playlists/create',
89 component: MyAccountVideoPlaylistElementsComponent, 89 component: MyAccountVideoPlaylistCreateComponent,
90 data: { 90 data: {
91 meta: { 91 meta: {
92 title: 'Playlist elements' 92 title: 'Create new playlist'
93 } 93 }
94 } 94 }
95 }, 95 },
96 { 96 {
97 path: 'video-playlists/create', 97 path: 'video-playlists/:videoPlaylistId',
98 component: MyAccountVideoPlaylistCreateComponent, 98 component: MyAccountVideoPlaylistElementsComponent,
99 data: { 99 data: {
100 meta: { 100 meta: {
101 title: 'Create new playlist' 101 title: 'Playlist elements'
102 } 102 }
103 } 103 }
104 }, 104 },