diff options
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 |