1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-22 03:03:22 +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 UserEntry extends Entry {
email: string;
disabled = false;
deleted = false;
get displayName(): string {
if (this.email == null) {
return this.referenceId;
}
return this.email;
}
}