2018-11-24 00:19:02 +00:00
|
|
|
from django.urls import path
|
2013-03-06 10:12:24 +00:00
|
|
|
|
|
|
|
from . import views
|
2012-12-30 14:19:22 +00:00
|
|
|
|
2014-04-02 00:46:34 +00:00
|
|
|
urlpatterns = [
|
2018-12-07 22:52:28 +00:00
|
|
|
path('regular/', views.regular),
|
2018-11-24 00:19:02 +00:00
|
|
|
path('no_response_fbv/', views.no_response),
|
|
|
|
path('no_response_cbv/', views.NoResponse()),
|
2018-12-07 22:52:28 +00:00
|
|
|
path('streaming/', views.streaming),
|
|
|
|
path('in_transaction/', views.in_transaction),
|
|
|
|
path('not_in_transaction/', views.not_in_transaction),
|
|
|
|
path('suspicious/', views.suspicious),
|
|
|
|
path('malformed_post/', views.malformed_post),
|
|
|
|
path('httpstatus_enum/', views.httpstatus_enum),
|
2014-04-02 00:46:34 +00:00
|
|
|
]
|