diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-08-09 21:45:21 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-08-09 21:45:21 +0200 |
commit | 7da18e4420c4b71a8ecfda07f39324fbfec081c3 (patch) | |
tree | 2755feedd730a78cdc407e7a79bcbfce3ebe71c8 /client/src/app/app.routes.ts | |
parent | 68a3b9f2aacb0225ae8b883b561b144bac339cbd (diff) | |
download | PeerTube-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.ts | 3 |
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 | ||
3 | import { AccountRoutes } from './account'; | 3 | import { AccountRoutes } from './account'; |
4 | import { LoginRoutes } from './login'; | 4 | import { LoginRoutes } from './login'; |
5 | import { AdminRoutes } from './admin'; | ||
5 | import { VideosRoutes } from './videos'; | 6 | import { VideosRoutes } from './videos'; |
6 | 7 | ||
7 | export const routes: RouterConfig = [ | 8 | export 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 |