Browse Source

Add a explaination to the password hint message #85

pull/125/head
Jean-Christophe BEGUE 6 years ago
parent
commit
d3b4b10d18
  1. 5
      src/api/core/accounts.rs

5
src/api/core/accounts.rs

@ -263,7 +263,10 @@ fn password_hint(data: JsonUpcase<PasswordHintData>, conn: DbConn) -> EmptyResul
}
match User::find_by_mail(&data.Email, &conn) {
Some(user) => err!(user.password_hint.to_owned().unwrap_or("".to_string())),
Some(user) => {
let hint = user.password_hint.to_owned().unwrap_or_default();
err!(format!("Your password hint is: {}", hint))
},
None => Ok(()),
}
}

Loading…
Cancel
Save