1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-21 18:53:18 +00:00

simualtion testing from dashboard

This commit is contained in:
Kyle Spearrin
2018-05-02 16:00:59 -04:00
parent da73fcd973
commit 9c5e0df719
10 changed files with 131 additions and 17 deletions

View File

@@ -4,4 +4,12 @@ export class GroupEntry extends Entry {
name: string;
userMemberExternalIds = new Set<string>();
groupMemberReferenceIds = new Set<string>();
get displayName(): string {
if (this.name == null) {
return this.referenceId;
}
return this.name;
}
}