Refactoring

This commit is contained in:
Chris Mann 2023-07-26 11:10:31 +02:00
parent 8505abca6f
commit ba3fd90b10
2 changed files with 2 additions and 0 deletions

View file

@ -40,6 +40,7 @@ func handleUser(w http.ResponseWriter, r *http.Request) {
data.DisplayName = login.UserEntry.GetAttributeValue("displayName")
data.GivenName = login.UserEntry.GetAttributeValue("givenName")
data.Surname = login.UserEntry.GetAttributeValue("sn")
data.OtherEmail = login.UserEntry.GetAttributeValue("carLicense")
// data.Visibility = login.UserEntry.GetAttributeValue(FIELD_NAME_DIRECTORY_VISIBILITY)
data.Description = login.UserEntry.GetAttributeValue("description")
//data.ProfilePicture = login.UserEntry.GetAttributeValue(FIELD_NAME_PROFILE_PICTURE)

View file

@ -187,6 +187,7 @@ type ProfileTplData struct {
GivenName string
Surname string
Description string
OtherEmail string
Common NestedCommonTplData
Login NestedLoginTplData
}