Add functionality for generating random NEX passwords #3

Merged
redbinder0526 merged 2 commits from nexpwd into main 2026-03-29 14:59:44 +02:00
Showing only changes of commit 2c4557ccc4 - Show all commits

Actually save the file this time

Whoops
red binder 2026-03-29 14:50:09 +02:00

View file

@ -127,7 +127,7 @@ impl Query {
}
};
// let nex_password = format!("{:a>16}",user.nex_password);
let nex_password = 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 = 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 = user.nex_password;
Some(UserInfoWithPId {
username: user.username,