Add lookups for static user list, make LDAP optional

This commit is contained in:
2024-10-22 13:59:01 +02:00
parent ba7336b4ee
commit 28520c59b9
13 changed files with 75 additions and 9 deletions

View File

@@ -25,7 +25,8 @@ export default class Profile {
}
get name(): string {
return this.data.name || "Anonymous";
return this.data.display_name || this.data.displayName ||
this.data.name || "Anonymous";
}
get about(): string {