Add functionality for generating random NEX passwords

This commit is contained in:
red binder 2026-03-29 14:44:15 +02:00
commit 15129e8df3
5 changed files with 41 additions and 21 deletions

View file

@ -127,7 +127,7 @@ impl Query {
}
};
let nex_password = format!("{:a>16}",user.nex_password);
// let nex_password = format!("{:a>16}",user.nex_password);
Some(UserInfo {
username: user.username,
@ -151,7 +151,7 @@ impl Query {
.await
.ok()?;
let nex_password = format!("{:a>16}",user.nex_password);
// let nex_password = format!("{:a>16}",user.nex_password);
Some(UserInfo {
username: user.username,
@ -175,7 +175,7 @@ impl Query {
.await
.ok()?;
let nex_password = format!("{:a>16}",user.nex_password);
// let nex_password = format!("{:a>16}",user.nex_password);
Some(UserInfoWithPId {
username: user.username,