MCPcopy Index your code
hub / github.com/fastapi-users/fastapi-users / update_oauth_account

Method update_oauth_account

fastapi_users/db/base.py:40–47  ·  view source on GitHub ↗

Update an OAuth account on a user.

(
        self: "BaseUserDatabase[UOAP, ID]",
        user: UOAP,
        oauth_account: OAP,
        update_dict: dict[str, Any],
    )

Source from the content-addressed store, hash-verified

38 raise NotImplementedError()
39
40 async def update_oauth_account(
41 self: "BaseUserDatabase[UOAP, ID]",
42 user: UOAP,
43 oauth_account: OAP,
44 update_dict: dict[str, Any],
45 ) -> UOAP:
46 """Update an OAuth account on a user."""
47 raise NotImplementedError()
48
49
50UserDatabaseDependency = DependencyCallable[BaseUserDatabase[UP, ID]]

Callers 1

oauth_callbackMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected