Skip to content

Commit

Permalink
Updated use of depracted code for support of Django 3.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Almiron committed Jun 2, 2021
1 parent 825c109 commit 242cf4e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions django_saml2_auth/urls.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from django.conf.urls import url
from django.urls import re_path
from . import views

app_name = 'django_saml2_auth'

urlpatterns = [
url(r'^acs/$', views.acs, name="acs"),
url(r'^welcome/$', views.welcome, name="welcome"),
url(r'^denied/$', views.denied, name="denied"),
re_path(r'^acs/$', views.acs, name="acs"),
re_path(r'^welcome/$', views.welcome, name="welcome"),
re_path(r'^denied/$', views.denied, name="denied"),
]

0 comments on commit 242cf4e

Please sign in to comment.