Skip to content

Commit

Permalink
Fix possible bad merge that breaks OIDC client auth
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Rusakov authored and lanseg committed Oct 9, 2024
1 parent bed1757 commit 919ea15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
# OIDC urls
if settings.OIDC_ENABLED:
urlpatterns += [
path(f'{ROOTURL}oidc/token', oidc.validate_token, name='oidc_validate_token'),
path(f'{ROOTURL}oidc/token', oidc.FrontendAuthentication.as_view(), name='oidc_validate_token'),
path(f'{ROOTURL}oidc/callback', OIDCCallbackClass.as_view(), name='oidc_authentication_callback'),
path(f'{ROOTURL}oidc/authenticate/', OIDCAuthenticateClass.as_view(), name='oidc_authentication_init'),
path(f'{ROOTURL}oidc/logout', OIDCLogoutView.as_view(), name='oidc_logout'),
Expand Down

0 comments on commit 919ea15

Please sign in to comment.