server: map email and display_name from attributes into user fields

This commit is contained in:
Valentin Tolmer
2024-08-27 23:57:52 +02:00
committed by nitnelave
parent b1384818d2
commit 6cf0f6df06
5 changed files with 66 additions and 23 deletions

View File

@@ -103,7 +103,7 @@ impl LLDAPFixture {
create_user::Variables {
user: create_user::CreateUserInput {
id: user.clone(),
email: format!("{}@lldap.test", user),
email: Some(format!("{}@lldap.test", user)),
avatar: None,
display_name: None,
first_name: None,