diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-11-04 17:25:26 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-11-04 17:25:26 +0100 |
commit | b58c69a1edcf63b6339576b5b431dbf7dea2c625 (patch) | |
tree | 98f4fb17351db9bd737aabfe56c1ddbcf8b29ad3 /client/src/app/login | |
parent | 3154f38219ea6eb55532f38fee43d46821a020ee (diff) | |
download | PeerTube-b58c69a1edcf63b6339576b5b431dbf7dea2c625.tar.gz PeerTube-b58c69a1edcf63b6339576b5b431dbf7dea2c625.tar.zst PeerTube-b58c69a1edcf63b6339576b5b431dbf7dea2c625.zip |
Client: add titles to all pages
Diffstat (limited to 'client/src/app/login')
-rw-r--r-- | client/src/app/login/login.routes.ts | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/client/src/app/login/login.routes.ts b/client/src/app/login/login.routes.ts index 4f56d5eb2..2f63af5e2 100644 --- a/client/src/app/login/login.routes.ts +++ b/client/src/app/login/login.routes.ts | |||
@@ -1,5 +1,13 @@ | |||
1 | import { LoginComponent } from './login.component'; | 1 | import { LoginComponent } from './login.component'; |
2 | 2 | ||
3 | export const LoginRoutes = [ | 3 | export const LoginRoutes = [ |
4 | { path: 'login', component: LoginComponent } | 4 | { |
5 | path: 'login', | ||
6 | component: LoginComponent, | ||
7 | data: { | ||
8 | meta: { | ||
9 | titleSuffix: ' - Login' | ||
10 | } | ||
11 | } | ||
12 | } | ||
5 | ]; | 13 | ]; |