diff --git a/fastapi_users_db_sqlalchemy/__init__.py b/fastapi_users_db_sqlalchemy/__init__.py index 467a2bf..2e44344 100644 --- a/fastapi_users_db_sqlalchemy/__init__.py +++ b/fastapi_users_db_sqlalchemy/__init__.py @@ -169,6 +169,8 @@ async def add_oauth_account(self, user: UP, create_dict: dict[str, Any]) -> UP: self.session.add(user) await self.session.commit() + await self.session.refresh(oauth_account) + await self.session.refresh(user) return user @@ -182,6 +184,8 @@ async def update_oauth_account( setattr(oauth_account, key, value) self.session.add(oauth_account) await self.session.commit() + await self.session.refresh(oauth_account) + await self.session.refresh(user) return user