]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/app.routes.ts
Client: avoid "quit friends" to appear during the pending request
[github/Chocobozzz/PeerTube.git] / client / src / app / app.routes.ts
CommitLineData
ab32b0fc 1import { Routes } from '@angular/router';
0629423c 2
629d8d6f 3import { AccountRoutes } from './account';
0629423c 4import { LoginRoutes } from './login';
7da18e44 5import { AdminRoutes } from './admin';
0629423c
C
6import { VideosRoutes } from './videos';
7
ab32b0fc 8export const routes: Routes = [
0629423c
C
9 {
10 path: '',
11 redirectTo: '/videos/list',
12 pathMatch: 'full'
13 },
7da18e44 14 ...AdminRoutes,
629d8d6f 15 ...AccountRoutes,
0629423c
C
16 ...LoginRoutes,
17 ...VideosRoutes
18];