]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/app.routes.ts
Client: implement password change
[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
C
4import { LoginRoutes } from './login';
5import { VideosRoutes } from './videos';
6
7export const routes: RouterConfig = [
8 {
9 path: '',
10 redirectTo: '/videos/list',
11 pathMatch: 'full'
12 },
13
629d8d6f 14 ...AccountRoutes,
0629423c
C
15 ...LoginRoutes,
16 ...VideosRoutes
17];