We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c984a4 commit 9c0794aCopy full SHA for 9c0794a
djangosaml2/tests/urls.py
@@ -12,13 +12,13 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
-from django.conf.urls import patterns, include, url
+from django.conf.urls import include, url
16
from django.contrib import admin
17
18
from djangosaml2 import views
19
20
21
-urlpatterns = patterns(''
+urlpatterns = [
22
url(r'^login/$', views.login, name='saml2_login'),
23
url(r'^acs/$', views.assertion_consumer_service, name='saml2_acs'),
24
url(r'^logout/$', views.logout, name='saml2_logout'),
@@ -28,4 +28,4 @@
28
29
# this is needed for the tests
30
url(r'^admin/', include(admin.site.urls)),
31
-)
+]
0 commit comments