summaryrefslogtreecommitdiff
path: root/tests/middleware/extra_urls.py
blob: faa6ed9f4c1ef316ce93d07fb2e48a4c2a960b6a (plain)
1
2
3
4
5
6
7
8
9
from django.urls import path

from . import views

urlpatterns = [
    path("customurlconf/noslash", views.empty_view),
    path("customurlconf/slash/", views.empty_view),
    path("customurlconf/needsquoting#/", views.empty_view),
]