Client: add warning if the user want to embed a video of a non https website
[oweals/peertube.git] / client / src / app / account / account.routes.ts
1 import { AccountComponent } from './account.component';
2
3 export const AccountRoutes = [
4   {
5     path: 'account',
6     component: AccountComponent,
7     data: {
8       meta: {
9         titleSuffix: ' - My account'
10       }
11     }
12   }
13 ];