aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/app.routes.ts
blob: 59ef4ce55ceb4e6f6cc254b749e4142cae43aff4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
];