diff options
| author | James Elliott <james-d-elliott@users.noreply.github.com> | 2025-02-22 17:40:08 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-22 06:40:08 +0000 |
| commit | 34932a845ec6a090147c37f8d5ddac9f334888d2 (patch) | |
| tree | 15c94be40e31ed1cd9a862af4f22b45e696f7534 /internal/configuration/schema/const.go | |
| parent | 7d3c2b1dedc415f4a4b80a0035a819ecf91894ec (diff) | |
feat(authentication): additional and custom attributes (#8078)
This facilitates adding additional attributes to the Authelia authentication backends as well as custom attributes based on the Common Expression Language. This will be utilized in the future to facilitate additional features.
Signed-off-by: James Elliott <james-d-elliott@users.noreply.github.com>
Diffstat (limited to 'internal/configuration/schema/const.go')
| -rw-r--r-- | internal/configuration/schema/const.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/configuration/schema/const.go b/internal/configuration/schema/const.go index d5de64444..659c44ea4 100644 --- a/internal/configuration/schema/const.go +++ b/internal/configuration/schema/const.go @@ -163,6 +163,9 @@ const ( ldapAttrUserID = "uid" ldapAttrSAMAccountName = "sAMAccountName" ldapAttrDisplayName = "displayName" + ldapAttrSurname = "sn" + ldapAttrGivenName = "givenName" + ldapAttrMiddleName = "middleName" ldapAttrDescription = "description" ldapAttrCommonName = "cn" ldapAttrMemberOf = "memberOf" |
