You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Add test case to test redirect; Minor refactor for test code: Extract UrlStreamDownload function; Remove ESPMode::ThreadSafe when define TSharedRef. [REVIEW] [at]michael.kirzinger [at]michael.atchison [at]rafa.lecina #rb [at]michael.atchison [at]rafa.lecina [CL 26036687 by lorry li in 5.3 branch]
15 lines
915 B
Python
15 lines
915 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("httptests/methods", views.methods, name="methods"),
|
|
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"),
|
|
]
|