Get a single user by email.
(self, email: str)
| 12 | raise NotImplementedError() |
| 13 | |
| 14 | async def get_by_email(self, email: str) -> UP | None: |
| 15 | """Get a single user by email.""" |
| 16 | raise NotImplementedError() |
| 17 | |
| 18 | async def get_by_oauth_account(self, oauth: str, account_id: str) -> UP | None: |
| 19 | """Get a single user by OAuth account id.""" |
no outgoing calls
no test coverage detected