From 0629423ce335137ce77d1ee8fe30fc0eee36d83b Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 8 Jul 2016 17:15:14 +0200 Subject: Client: Update to Angular RC4 --- client/src/app/app.routes.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 client/src/app/app.routes.ts (limited to 'client/src/app/app.routes.ts') 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 @@ +import { RouterConfig } from '@angular/router'; + +import { LoginRoutes } from './login'; +import { VideosRoutes } from './videos'; + +export const routes: RouterConfig = [ + { + path: '', + redirectTo: '/videos/list', + pathMatch: 'full' + }, + + ...LoginRoutes, + ...VideosRoutes +]; -- cgit v1.2.3