From b419527c83f17fa6d984014c241ebcaaf17ba125 Mon Sep 17 00:00:00 2001 From: Kai Jan Kriegel Date: Fri, 11 Nov 2022 20:40:36 +0100 Subject: [PATCH] quick test --- bffhd/authentication/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) {