diff options
Diffstat (limited to 'client/src/app/app.routes.ts')
-rw-r--r-- | client/src/app/app.routes.ts | 15 |
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 @@ | |||
1 | import { RouterConfig } from '@angular/router'; | ||
2 | |||
3 | import { LoginRoutes } from './login'; | ||
4 | import { VideosRoutes } from './videos'; | ||
5 | |||
6 | export const routes: RouterConfig = [ | ||
7 | { | ||
8 | path: '', | ||
9 | redirectTo: '/videos/list', | ||
10 | pathMatch: 'full' | ||
11 | }, | ||
12 | |||
13 | ...LoginRoutes, | ||
14 | ...VideosRoutes | ||
15 | ]; | ||