mirror of https://github.com/zulip/zulip.git
dev_ldap: Fix password in mode 'c' to be equal to username.
This commit is contained in:
parent
dccfadc1a5
commit
88c1d868d2
|
@ -42,7 +42,7 @@ def generate_dev_ldap_dir(mode: str, num_users: int=8) -> Dict[str, Dict[str, An
|
|||
email_username = email.split('@')[0]
|
||||
ldap_dir['uid=' + email_username + ',ou=users,dc=zulip,dc=com'] = {
|
||||
'cn': [name[0], ],
|
||||
'userPassword': [email_username + '_test', ],
|
||||
'userPassword': [email_username, ],
|
||||
'email': email,
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue