(
self, user: UserOAuthModel, create_dict: dict[str, Any]
)
| 421 | pass |
| 422 | |
| 423 | async def add_oauth_account( |
| 424 | self, user: UserOAuthModel, create_dict: dict[str, Any] |
| 425 | ) -> UserOAuthModel: |
| 426 | oauth_account = OAuthAccountModel(**create_dict) |
| 427 | user.oauth_accounts.append(oauth_account) |
| 428 | return user |
| 429 | |
| 430 | async def update_oauth_account( # type: ignore |
| 431 | self, |
no test coverage detected