diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-12-01 18:56:26 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-12-01 18:56:26 +0100 |
commit | 202f6b6c9dcc9b0aec4b0c1b15e455c22a7952a7 (patch) | |
tree | 605df063371b6be32ca0773bf2917b0c5d9163ae /client/src/app/account/account-routing.module.ts | |
parent | c30745f342480b59fb0856a059c8c2fbffbcfc6a (diff) | |
download | PeerTube-202f6b6c9dcc9b0aec4b0c1b15e455c22a7952a7.tar.gz PeerTube-202f6b6c9dcc9b0aec4b0c1b15e455c22a7952a7.tar.zst PeerTube-202f6b6c9dcc9b0aec4b0c1b15e455c22a7952a7.zip |
Begin videos of an account
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 | ] |