]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/app.routes.ts
Server: allow user to get its informations (/users/me)
[github/Chocobozzz/PeerTube.git] / client / src / app / app.routes.ts
CommitLineData
0629423c
C
1import { RouterConfig } from '@angular/router';
2
3import { LoginRoutes } from './login';
4import { VideosRoutes } from './videos';
5
6export const routes: RouterConfig = [
7 {
8 path: '',
9 redirectTo: '/videos/list',
10 pathMatch: 'full'
11 },
12
13 ...LoginRoutes,
14 ...VideosRoutes
15];