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

sort results

This commit is contained in:
Kyle Spearrin
2018-05-02 17:00:31 -04:00
parent c80fa93515
commit 3981cb95fc
3 changed files with 19 additions and 1 deletions

View File

@@ -1,4 +1,8 @@
export abstract class Entry {
referenceId: string;
externalId: string;
get displayName(): string {
return this.referenceId;
}
}