1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00

Total number of organization users added (#489)

This commit is contained in:
brunohunziker
2020-03-10 17:06:25 +01:00
committed by GitHub
parent 5dfeee548d
commit 84dde72990
2 changed files with 5 additions and 0 deletions

View File

@@ -121,6 +121,10 @@ export class PeopleComponent implements OnInit {
}
}
get allCount() {
return this.allUsers.length;
}
get invitedCount() {
return this.statusMap.has(OrganizationUserStatusType.Invited) ?
this.statusMap.get(OrganizationUserStatusType.Invited).length : 0;