aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/app.routes.ts
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-08-09 21:45:21 +0200
committerChocobozzz <florian.bigard@gmail.com>2016-08-09 21:45:21 +0200
commit7da18e4420c4b71a8ecfda07f39324fbfec081c3 (patch)
tree2755feedd730a78cdc407e7a79bcbfce3ebe71c8 /client/src/app/app.routes.ts
parent68a3b9f2aacb0225ae8b883b561b144bac339cbd (diff)
downloadPeerTube-7da18e4420c4b71a8ecfda07f39324fbfec081c3.tar.gz
PeerTube-7da18e4420c4b71a8ecfda07f39324fbfec081c3.tar.zst
PeerTube-7da18e4420c4b71a8ecfda07f39324fbfec081c3.zip
Client: add user management
Diffstat (limited to 'client/src/app/app.routes.ts')
-rw-r--r--client/src/app/app.routes.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/app/app.routes.ts b/client/src/app/app.routes.ts
index 1c414038d..d7194cb4f 100644
--- a/client/src/app/app.routes.ts
+++ b/client/src/app/app.routes.ts
@@ -2,6 +2,7 @@ import { RouterConfig } from '@angular/router';
2 2
3import { AccountRoutes } from './account'; 3import { AccountRoutes } from './account';
4import { LoginRoutes } from './login'; 4import { LoginRoutes } from './login';
5import { AdminRoutes } from './admin';
5import { VideosRoutes } from './videos'; 6import { VideosRoutes } from './videos';
6 7
7export const routes: RouterConfig = [ 8export const routes: RouterConfig = [
@@ -10,7 +11,7 @@ export const routes: RouterConfig = [
10 redirectTo: '/videos/list', 11 redirectTo: '/videos/list',
11 pathMatch: 'full' 12 pathMatch: 'full'
12 }, 13 },
13 14 ...AdminRoutes,
14 ...AccountRoutes, 15 ...AccountRoutes,
15 ...LoginRoutes, 16 ...LoginRoutes,
16 ...VideosRoutes 17 ...VideosRoutes