From 3572fd4e7b0b45ec6cb5a86ea84e486a2b18f33c Mon Sep 17 00:00:00 2001 From: glyph Date: Fri, 4 Mar 2022 10:56:07 +0200 Subject: [PATCH] remove password hash logging --- peach-lib/issues_to_fix | 23 ----------------------- peach-lib/src/config_manager.rs | 1 - 2 files changed, 24 deletions(-) delete mode 100644 peach-lib/issues_to_fix diff --git a/peach-lib/issues_to_fix b/peach-lib/issues_to_fix deleted file mode 100644 index fc8d8d5..0000000 --- a/peach-lib/issues_to_fix +++ /dev/null @@ -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 diff --git a/peach-lib/src/config_manager.rs b/peach-lib/src/config_manager.rs index dfffd42..e871774 100644 --- a/peach-lib/src/config_manager.rs +++ b/peach-lib/src/config_manager.rs @@ -181,7 +181,6 @@ pub fn set_admin_password_hash(password_hash: &str) -> Result Result { 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 {