From 05e82fcc54c91dffce53ca668aaff9b897767de1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edsson=20Abel=20D=C3=ADaz=20Jaimes?= Date: Tue, 24 Jan 2023 16:24:59 +0000 Subject: [PATCH] adding email_verified as a public field --- siwa/library/token/payload.py | 1 + 1 file changed, 1 insertion(+) diff --git a/siwa/library/token/payload.py b/siwa/library/token/payload.py index 8fb982c..a534866 100644 --- a/siwa/library/token/payload.py +++ b/siwa/library/token/payload.py @@ -48,6 +48,7 @@ def __init__( email_is_private = property(lambda s: s._is_private_email) real_person = property(lambda s: s._real_person) audience = property(lambda s: s._audience) + email_verified = property(lambda s: s._email_verified) @classmethod def decode(cls: Type[T], data: Dict) -> T: