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 = [
|
2022-02-03 19:24:19 +00:00
|
|
|
path("regular/", views.regular),
|
|
|
|
path("async_regular/", views.async_regular),
|
|
|
|
path("no_response_fbv/", views.no_response),
|
|
|
|
path("no_response_cbv/", views.NoResponse()),
|
|
|
|
path("streaming/", views.streaming),
|
2023-02-15 23:16:51 +00:00
|
|
|
path("async_streaming/", views.async_streaming),
|
2022-02-03 19:24:19 +00:00
|
|
|
path("in_transaction/", views.in_transaction),
|
|
|
|
path("not_in_transaction/", views.not_in_transaction),
|
2022-12-03 02:04:42 +00:00
|
|
|
path("not_in_transaction_using_none/", views.not_in_transaction_using_none),
|
|
|
|
path("not_in_transaction_using_text/", views.not_in_transaction_using_text),
|
2022-02-03 19:24:19 +00:00
|
|
|
path("bad_request/", views.bad_request),
|
|
|
|
path("suspicious/", views.suspicious),
|
|
|
|
path("malformed_post/", views.malformed_post),
|
|
|
|
path("httpstatus_enum/", views.httpstatus_enum),
|
|
|
|
path("unawaited/", views.async_unawaited),
|
2014-04-02 00:46:34 +00:00
|
|
|
]
|