diff --git a/bffhd/authentication/mod.rs b/bffhd/authentication/mod.rs index 7c94a25..ea9b777 100644 --- a/bffhd/authentication/mod.rs +++ b/bffhd/authentication/mod.rs @@ -50,9 +50,9 @@ impl SessionCallback for Callback { let password = context.get_ref::() .ok_or(ValidationError::MissingRequiredProperty)?; - if authzid.is_some() { - return Ok(()) - } + // if authzid.is_some() { + // return Ok(()) + // } if let Some(user) = self.users.get_user(authcid) { match user.check_password(password) {