Oauth Anthentication #48

Merged
Xefir merged 13 commits from v2 into master 2022-09-12 18:47:37 +00:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit 47781b35dd - Show all commits

View File

@ -78,7 +78,9 @@ def token_updater(token: str):
session["oauth2_token"] = token
def make_session(token: Optional[Dict[str, str]], state=Optional[str]) -> OAuth2Session:
def make_session(
token: Optional[Dict[str, str]] = None, state: Optional[str] = None
) -> OAuth2Session:
return OAuth2Session(
client_id=OAUTH2_CLIENT_ID,
token=token,