fix: user confirm bug

This commit is contained in:
feng626
2022-06-16 11:28:34 +08:00
committed by Jiangjie.Bai
parent 4c2274b14e
commit 75a72fb182

View File

@@ -22,7 +22,7 @@ class ConfirmViewSet(ListCreateAPIView):
def check(self, confirm_type: str):
if confirm_type == ConfirmType.MFA:
return bool(MFAOtp(self.user).is_active())
return self.user.mfa_enabled
if confirm_type == ConfirmType.PASSWORD:
return self.user.is_password_authenticate()