]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/app.routes.ts
Client: navigate to /videos/list when do search on another page
[github/Chocobozzz/PeerTube.git] / client / src / app / app.routes.ts
CommitLineData
0629423c
C
1import { RouterConfig } from '@angular/router';
2
629d8d6f 3import { AccountRoutes } from './account';
0629423c 4import { LoginRoutes } from './login';
7da18e44 5import { AdminRoutes } from './admin';
0629423c
C
6import { VideosRoutes } from './videos';
7
8export const routes: RouterConfig = [
9 {
10 path: '',
11 redirectTo: '/videos/list',
12 pathMatch: 'full'
13 },
7da18e44 14 ...AdminRoutes,
629d8d6f 15 ...AccountRoutes,
0629423c
C
16 ...LoginRoutes,
17 ...VideosRoutes
18];