Fix typo
This commit is contained in:
parent
4008036bca
commit
1c57944a90
1 changed files with 2 additions and 1 deletions
|
@ -264,7 +264,7 @@ async def logout(
|
||||||
{
|
{
|
||||||
"post_logout_redirect_uri": post_logout_uri,
|
"post_logout_redirect_uri": post_logout_uri,
|
||||||
"id_token_hint": token["id_token"],
|
"id_token_hint": token["id_token"],
|
||||||
"cliend_id": "oidc_local_test",
|
"client_id": "oidc_local_test",
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
@ -301,6 +301,7 @@ async def refresh(
|
||||||
await update_token(provider.id, new_token)
|
await update_token(provider.id, new_token)
|
||||||
return RedirectResponse(url=request.url_for("home"))
|
return RedirectResponse(url=request.url_for("home"))
|
||||||
|
|
||||||
|
|
||||||
# Snippet for running standalone
|
# Snippet for running standalone
|
||||||
# Mostly useful for the --version option,
|
# Mostly useful for the --version option,
|
||||||
# as running with uvicorn is easy and provides better flexibility, eg.
|
# as running with uvicorn is easy and provides better flexibility, eg.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue