Files
UnrealEngineUWP/Engine/Source/Programs/WebTestsServer/httptests/urls.py
lorry li 70a86ba061 Remove dependency of http request from http response;
Make http requests use GET by default if verb is not set.

[REVIEW] [at]michael.kirzinger [at]rafa.lecina [at]justin.marcus
#jira UE-196108
#rb [at]michael.kirzinger [at]justin.marcus

[CL 28469520 by lorry li in ue5-main branch]
2023-10-04 15:14:01 -04:00

16 lines
1008 B
Python

from django.urls import path
from . import views
urlpatterns = [
path("httptests/methods", views.methods, name="methods"),
path("httptests/query_with_params/", views.query_with_params, name="query_with_params"),
path("httptests/get_large_response_without_chunks/<int:bytes_number>/", views.get_large_response_without_chunks, name="get_large_response_without_chunks"),
path("httptests/nonstreaming_receivetimeout/<int:wait_time>/", views.nonstreaming_receivetimeout, name="nonstreaming_receivetimeout"),
path("httptests/streaming_download/<int:chunks>/<int:chunk_size>/", views.streaming_download, name="streaming_download"),
path("httptests/streaming_upload_post", views.streaming_upload_post, name="streaming_upload_post"),
path("httptests/streaming_upload_put", views.streaming_upload_put, name="streaming_upload_put"),
path("httptests/redirect_from", views.redirect_from, name="redirect_from"),
path("httptests/redirect_to", views.redirect_to, name="redirect_to"),
]