diff options
Diffstat (limited to 'client')
-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 | } |