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/admin/users | |
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/admin/users')
-rw-r--r-- | client/src/app/admin/users/users.routes.ts | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/client/src/app/admin/users/users.routes.ts b/client/src/app/admin/users/users.routes.ts index eb71bd0ae..92e3e43e3 100644 --- a/client/src/app/admin/users/users.routes.ts +++ b/client/src/app/admin/users/users.routes.ts | |||
@@ -16,11 +16,21 @@ export const UsersRoutes: Routes = [ | |||
16 | }, | 16 | }, |
17 | { | 17 | { |
18 | path: 'list', | 18 | path: 'list', |
19 | component: UserListComponent | 19 | component: UserListComponent, |
20 | data: { | ||
21 | meta: { | ||
22 | titleSuffix: ' - Users list' | ||
23 | } | ||
24 | } | ||
20 | }, | 25 | }, |
21 | { | 26 | { |
22 | path: 'add', | 27 | path: 'add', |
23 | component: UserAddComponent | 28 | component: UserAddComponent, |
29 | data: { | ||
30 | meta: { | ||
31 | titleSuffix: ' - Add a user' | ||
32 | } | ||
33 | } | ||
24 | } | 34 | } |
25 | ] | 35 | ] |
26 | } | 36 | } |