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.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/client/src/app/app.routes.ts b/client/src/app/app.routes.ts
new file mode 100644
index 000000000..59ef4ce55
--- /dev/null
+++ b/client/src/app/app.routes.ts
@@ -0,0 +1,15 @@
1import { RouterConfig } from '@angular/router';
2
3import { LoginRoutes } from './login';
4import { VideosRoutes } from './videos';
5
6export const routes: RouterConfig = [
7 {
8 path: '',
9 redirectTo: '/videos/list',
10 pathMatch: 'full'
11 },
12
13 ...LoginRoutes,
14 ...VideosRoutes
15];