Create an OAuth account and add it to the user.
(
self: "BaseUserDatabase[UOAP, ID]", user: UOAP, create_dict: dict[str, Any]
)
| 32 | raise NotImplementedError() |
| 33 | |
| 34 | async def add_oauth_account( |
| 35 | self: "BaseUserDatabase[UOAP, ID]", user: UOAP, create_dict: dict[str, Any] |
| 36 | ) -> UOAP: |
| 37 | """Create an OAuth account and add it to the user.""" |
| 38 | raise NotImplementedError() |
| 39 | |
| 40 | async def update_oauth_account( |
| 41 | self: "BaseUserDatabase[UOAP, ID]", |
no outgoing calls
no test coverage detected