aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/app.routes.ts
diff options
context:
space:
mode:
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