From ea3735bc9ff22257301057bf83700cf045f2ff06 Mon Sep 17 00:00:00 2001 From: Solomon Negusse Date: Fri, 10 May 2024 11:49:44 +0300 Subject: [PATCH] fix user model fields --- app/models/pydantic/authentication.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/models/pydantic/authentication.py b/app/models/pydantic/authentication.py index 61be0cf5c..12064fd25 100644 --- a/app/models/pydantic/authentication.py +++ b/app/models/pydantic/authentication.py @@ -20,7 +20,8 @@ class User(StrictBaseModel): email: EmailStr createdAt: datetime role: str - applications: List[str] + provider: str + providerId: str extraUserData: Dict[str, Any]