diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-02-16 19:19:56 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-02-16 19:19:56 +0100 |
commit | 4793c343fd3cde3c6282ed0fb38e039b4276de0e (patch) | |
tree | 566856a8d0bee0ee06e60c5e3bf6b998135a078a /client/src/app/+admin | |
parent | 3266ad7cf8ff10d0fdae456196eff1653cc7ac21 (diff) | |
download | PeerTube-4793c343fd3cde3c6282ed0fb38e039b4276de0e.tar.gz PeerTube-4793c343fd3cde3c6282ed0fb38e039b4276de0e.tar.zst PeerTube-4793c343fd3cde3c6282ed0fb38e039b4276de0e.zip |
Add email to pods
Diffstat (limited to 'client/src/app/+admin')
-rw-r--r-- | client/src/app/+admin/friends/friend-list/friend-list.component.ts | 4 | ||||
-rw-r--r-- | client/src/app/+admin/friends/shared/friend.model.ts | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/client/src/app/+admin/friends/friend-list/friend-list.component.ts b/client/src/app/+admin/friends/friend-list/friend-list.component.ts index 9783adf16..525a9fbc3 100644 --- a/client/src/app/+admin/friends/friend-list/friend-list.component.ts +++ b/client/src/app/+admin/friends/friend-list/friend-list.component.ts | |||
@@ -35,6 +35,10 @@ export class FriendListComponent { | |||
35 | title: 'Host', | 35 | title: 'Host', |
36 | sort: false | 36 | sort: false |
37 | }, | 37 | }, |
38 | email: { | ||
39 | title: 'Email', | ||
40 | sort: false | ||
41 | }, | ||
38 | score: { | 42 | score: { |
39 | title: 'Score', | 43 | title: 'Score', |
40 | sort: false | 44 | sort: false |
diff --git a/client/src/app/+admin/friends/shared/friend.model.ts b/client/src/app/+admin/friends/shared/friend.model.ts index 462cc82ed..f72156d05 100644 --- a/client/src/app/+admin/friends/shared/friend.model.ts +++ b/client/src/app/+admin/friends/shared/friend.model.ts | |||
@@ -2,5 +2,6 @@ export interface Friend { | |||
2 | id: string; | 2 | id: string; |
3 | host: string; | 3 | host: string; |
4 | score: number; | 4 | score: number; |
5 | email: string; | ||
5 | createdAt: Date; | 6 | createdAt: Date; |
6 | } | 7 | } |