diff options
Diffstat (limited to 'client/src/app/account/account-routing.module.ts')
-rw-r--r-- | client/src/app/account/account-routing.module.ts | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/client/src/app/account/account-routing.module.ts b/client/src/app/account/account-routing.module.ts index 2e9de1cfb..070b9b5c5 100644 --- a/client/src/app/account/account-routing.module.ts +++ b/client/src/app/account/account-routing.module.ts | |||
@@ -6,6 +6,7 @@ import { MetaGuard } from '@ngx-meta/core' | |||
6 | import { LoginGuard } from '../core' | 6 | import { LoginGuard } from '../core' |
7 | import { AccountComponent } from './account.component' | 7 | import { AccountComponent } from './account.component' |
8 | import { AccountSettingsComponent } from './account-settings/account-settings.component' | 8 | import { AccountSettingsComponent } from './account-settings/account-settings.component' |
9 | import { AccountVideosComponent } from './account-videos/account-videos.component' | ||
9 | 10 | ||
10 | const accountRoutes: Routes = [ | 11 | const accountRoutes: Routes = [ |
11 | { | 12 | { |
@@ -22,15 +23,15 @@ const accountRoutes: Routes = [ | |||
22 | } | 23 | } |
23 | } | 24 | } |
24 | }, | 25 | }, |
25 | // { | 26 | { |
26 | // path: 'videos', | 27 | path: 'videos', |
27 | // component: AccountVideosComponent, | 28 | component: AccountVideosComponent, |
28 | // data: { | 29 | data: { |
29 | // meta: { | 30 | meta: { |
30 | // title: 'Account videos' | 31 | title: 'Account videos' |
31 | // } | 32 | } |
32 | // } | 33 | } |
33 | // } | 34 | } |
34 | ] | 35 | ] |
35 | } | 36 | } |
36 | ] | 37 | ] |