aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-routing.module.ts
diff options
context:
space:
mode:
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 },