mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
e43bc93047
* [FEATURE] Add configurable display name to frontend This feature allows users with a LDAP backend to specify an attribute (default is "displayname") to retrieve a users name for the portal greeting. Similarly for the file based backend a new required key "name" has been introduced. This can also be used down the line with OIDC as a separate scope. * Update references from Name to DisplayName * Update compose bundles to include displayname refs * Update LDAP automatic profile refresh * Ensure display name is updated * Fix bug which prevented trace logging for profile refresh to not trigger
15 lines
422 B
YAML
15 lines
422 B
YAML
###############################################################
|
|
# Users Database #
|
|
###############################################################
|
|
|
|
# This file can be used if you do not have an LDAP set up.
|
|
|
|
# List of users
|
|
users:
|
|
<USERNAME>:
|
|
displayname: "<DISPLAYNAME>"
|
|
password: "<PASSWORD>"
|
|
email: <USERNAME>@example.com
|
|
groups:
|
|
- admins
|
|
- dev |