]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/app.routes.ts
Client: add ID, score and created date to the friends list
[github/Chocobozzz/PeerTube.git] / client / src / app / app.routes.ts
... / ...
CommitLineData
1import { RouterConfig } from '@angular/router';
2
3import { AccountRoutes } from './account';
4import { LoginRoutes } from './login';
5import { AdminRoutes } from './admin';
6import { VideosRoutes } from './videos';
7
8export const routes: RouterConfig = [
9 {
10 path: '',
11 redirectTo: '/videos/list',
12 pathMatch: 'full'
13 },
14 ...AdminRoutes,
15 ...AccountRoutes,
16 ...LoginRoutes,
17 ...VideosRoutes
18];