diff options
Diffstat (limited to 'client/src/app/app.routes.ts')
-rw-r--r-- | client/src/app/app.routes.ts | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/client/src/app/app.routes.ts b/client/src/app/app.routes.ts deleted file mode 100644 index 03e2bce51..000000000 --- a/client/src/app/app.routes.ts +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | import { Routes } from '@angular/router'; | ||
2 | |||
3 | import { AccountRoutes } from './account'; | ||
4 | import { LoginRoutes } from './login'; | ||
5 | import { AdminRoutes } from './admin'; | ||
6 | import { VideosRoutes } from './videos'; | ||
7 | |||
8 | export const routes: Routes = [ | ||
9 | { | ||
10 | path: '', | ||
11 | redirectTo: '/videos/list', | ||
12 | pathMatch: 'full' | ||
13 | }, | ||
14 | ...AdminRoutes, | ||
15 | ...AccountRoutes, | ||
16 | ...LoginRoutes, | ||
17 | ...VideosRoutes | ||
18 | ]; | ||