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),
|
2020-02-12 22:15:00 +00:00
|
|
|
path("async_regular/", views.async_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),
|
2023-02-15 23:16:51 +00:00
|
|
|
path("async_streaming/", views.async_streaming),
|
2018-12-07 22:52:28 +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),
|
2020-09-07 11:33:47 +00:00
|
|
|
path("bad_request/", views.bad_request),
|
2018-12-07 22:52:28 +00:00
|
|
|
path("suspicious/", views.suspicious),
|
|
|
|
path("malformed_post/", views.malformed_post),
|
|
|
|
path("httpstatus_enum/", views.httpstatus_enum),
|
2020-02-12 22:15:00 +00:00
|
|
|
path("unawaited/", views.async_unawaited),
|
2014-04-02 00:46:34 +00:00
|
|
|
]
|