You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: kittycad/__init__.py
+72Lines changed: 72 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5472,6 +5472,42 @@ def oauth2_token_revoke(
5472
5472
5473
5473
returnresponse.json() ifresponse.contentelseNone
5474
5474
5475
+
defverify_oauth_account_linking(
5476
+
self,
5477
+
token: str,
5478
+
*,
5479
+
callback_url: Optional[str] =None,
5480
+
):
5481
+
"""This endpoint is called when a user clicks the verification link sent to their email after attempting to log in with OAuth when an existing account with the same email was found. This endpoint validates the token, links the OAuth account to the user, and creates a session."""
"""This endpoint is called when a user clicks the verification link sent to their email after attempting to log in with OAuth when an existing account with the same email was found. This endpoint validates the token, links the OAuth account to the user, and creates a session."""
0 commit comments