Skip to content

Commit 8e70e54

Browse files
committed
Logout bug fix
1 parent 8411b1a commit 8e70e54

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packet/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929

3030
auth = OIDCAuthentication(app, issuer=app.config["OIDC_ISSUER"], client_registration_info={
3131
"client_id": app.config["OIDC_CLIENT_ID"],
32-
"client_secret": app.config["OIDC_CLIENT_SECRET"]
32+
"client_secret": app.config["OIDC_CLIENT_SECRET"],
33+
"post_logout_redirect_uris": "/logout/"
3334
})
3435

3536
# LDAP

0 commit comments

Comments
 (0)