check if reset policy is enabled

This commit is contained in:
Stefan Melmuk 2023-04-06 22:34:05 +02:00
parent 0b28ab3be1
commit 89e94b1d91
No known key found for this signature in database
GPG Key ID: 817020C608FE9C09
1 changed files with 1 additions and 1 deletions

View File

@ -309,7 +309,7 @@ impl OrgPolicy {
match OrgPolicy::find_by_org_and_type(org_uuid, OrgPolicyType::ResetPassword, conn).await {
Some(policy) => match serde_json::from_str::<UpCase<ResetPasswordDataModel>>(&policy.data) {
Ok(opts) => {
return opts.data.AutoEnrollEnabled;
return policy.enabled && opts.data.AutoEnrollEnabled;
}
_ => error!("Failed to deserialize ResetPasswordDataModel: {}", policy.data),
},