remove password hash logging

This commit is contained in:
glyph 2022-03-04 10:56:07 +02:00
parent 7fdf88eaa8
commit 3572fd4e7b
2 changed files with 0 additions and 24 deletions

View File

@ -1,23 +0,0 @@
- permissions for /var/lib/peachcloud
- everything fails if we don't have write permissions
- can't write config
- configure admin (add new admin)
- isn't persisted to config.yml
- on second try, it is persisted
- password reset via ssb pm is now working
- it sends a temporary password but says nothing about username
- what is the default username?
- why do we even have a username?
- login with temporary password fails
- "Invalid password: Password error: hash value in YAML configuration file is empty."
- things are generally working now :)
- for all form inputs:
- use a proper label (not just a placeholder)
- login

View File

@ -181,7 +181,6 @@ pub fn set_admin_password_hash(password_hash: &str) -> Result<PeachConfig, Peach
pub fn get_admin_password_hash() -> Result<String, PeachError> {
let peach_config = load_peach_config()?;
debug!("Admin password hash: {}", peach_config.admin_password_hash);
if !peach_config.admin_password_hash.is_empty() {
Ok(peach_config.admin_password_hash)
} else {