Skip to content

Commit

Permalink
fix urls
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentporte committed Nov 4, 2024
1 parent 2fc8eba commit ecddeb6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
urlpatterns = [
path("admin/", admin.site.urls),
# Pro Connect URLs.
path("", include(openid_connect_urls)),
path("pro_connect/", include(openid_connect_urls)),
# www.
path("", include(pages_urls)),
path("members/", include(forum_member_urls)),
Expand Down
6 changes: 3 additions & 3 deletions lacommunaute/openid_connect/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
app_name = "openid_connect"

urlpatterns = [
path("pro_connect/authorize", views.pro_connect_authorize, name="authorize"),
path("pro_connect/callback", views.pro_connect_callback, name="callback"),
path("pro_connect/logout", views.pro_connect_logout, name="logout"),
path("authorize", views.pro_connect_authorize, name="authorize"),
path("callback", views.pro_connect_callback, name="callback"),
path("logout", views.pro_connect_logout, name="logout"),
]

0 comments on commit ecddeb6

Please sign in to comment.