Create admin user by default

This commit is contained in:
Valentin Tolmer
2021-05-26 15:13:17 +02:00
parent 5a70f2ebc2
commit 8e369016da
2 changed files with 17 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ fn passwords_match(encrypted_password: &str, clear_password: &str, pepper: &str)
encrypted_password,
clear_password.as_bytes(),
pepper.as_bytes(),
/*additional_data=*/b"",
/*additional_data=*/ b"",
)
.unwrap_or_else(|e| {
log::error!("Error checking password: {}", e);