diff options
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.ts | 30 |
1 files changed, 30 insertions, 0 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 5a61db41f..96f52c1da 100644 --- a/client/src/app/my-account/my-account-routing.module.ts +++ b/client/src/app/my-account/my-account-routing.module.ts | |||
@@ -5,6 +5,9 @@ import { LoginGuard } from '../core' | |||
5 | import { MyAccountComponent } from './my-account.component' | 5 | import { MyAccountComponent } from './my-account.component' |
6 | import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component' | 6 | import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component' |
7 | import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component' | 7 | import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component' |
8 | import { MyAccountVideoChannelsComponent } from '@app/my-account/my-account-video-channels/my-account-video-channels.component' | ||
9 | import { MyAccountVideoChannelCreateComponent } from '@app/my-account/my-account-video-channels/my-account-video-channel-create.component' | ||
10 | import { MyAccountVideoChannelUpdateComponent } from '@app/my-account/my-account-video-channels/my-account-video-channel-update.component' | ||
8 | 11 | ||
9 | const myAccountRoutes: Routes = [ | 12 | const myAccountRoutes: Routes = [ |
10 | { | 13 | { |
@@ -22,6 +25,33 @@ const myAccountRoutes: Routes = [ | |||
22 | } | 25 | } |
23 | }, | 26 | }, |
24 | { | 27 | { |
28 | path: 'video-channels', | ||
29 | component: MyAccountVideoChannelsComponent, | ||
30 | data: { | ||
31 | meta: { | ||
32 | title: 'Account video channels' | ||
33 | } | ||
34 | } | ||
35 | }, | ||
36 | { | ||
37 | path: 'video-channels/create', | ||
38 | component: MyAccountVideoChannelCreateComponent, | ||
39 | data: { | ||
40 | meta: { | ||
41 | title: 'Create new video channel' | ||
42 | } | ||
43 | } | ||
44 | }, | ||
45 | { | ||
46 | path: 'video-channels/update/:videoChannelId', | ||
47 | component: MyAccountVideoChannelUpdateComponent, | ||
48 | data: { | ||
49 | meta: { | ||
50 | title: 'Update video channel' | ||
51 | } | ||
52 | } | ||
53 | }, | ||
54 | { | ||
25 | path: 'videos', | 55 | path: 'videos', |
26 | component: MyAccountVideosComponent, | 56 | component: MyAccountVideosComponent, |
27 | data: { | 57 | data: { |