diff options
author | Chocobozzz <me@florianbigard.com> | 2018-04-25 16:56:13 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-04-25 16:56:13 +0200 |
commit | 170726f523ff48f89da45473fc53ca54784f43dd (patch) | |
tree | f9f783ebdfc934c6831396c2bf33f658d6640583 /client/src/app/app-routing.module.ts | |
parent | cc918ac3f45e32f031cce7b6e0473e5c2c34b8ae (diff) | |
download | PeerTube-170726f523ff48f89da45473fc53ca54784f43dd.tar.gz PeerTube-170726f523ff48f89da45473fc53ca54784f43dd.tar.zst PeerTube-170726f523ff48f89da45473fc53ca54784f43dd.zip |
Implement video channel views
Diffstat (limited to 'client/src/app/app-routing.module.ts')
-rw-r--r-- | client/src/app/app-routing.module.ts | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/client/src/app/app-routing.module.ts b/client/src/app/app-routing.module.ts index 1d55b4cea..799748cfa 100644 --- a/client/src/app/app-routing.module.ts +++ b/client/src/app/app-routing.module.ts | |||
@@ -9,8 +9,12 @@ const routes: Routes = [ | |||
9 | loadChildren: './+admin/admin.module#AdminModule' | 9 | loadChildren: './+admin/admin.module#AdminModule' |
10 | }, | 10 | }, |
11 | { | 11 | { |
12 | path: 'account', | 12 | path: 'accounts', |
13 | loadChildren: './+account/account.module#AccountModule' | 13 | loadChildren: './+accounts/accounts.module#AccountsModule' |
14 | }, | ||
15 | { | ||
16 | path: 'video-channels', | ||
17 | loadChildren: './+video-channels/video-channels.module#VideoChannelsModule' | ||
14 | } | 18 | } |
15 | ] | 19 | ] |
16 | 20 | ||