Add allow_other_host in redirects which may go outside app (#24252)

This commit is contained in:
Matt Jankowski
2023-03-25 19:38:32 -04:00
committed by GitHub
parent e63524f457
commit e633b26f4f
3 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ class Api::V1::StreamingController < Api::BaseController
if Rails.configuration.x.streaming_api_base_url == request.host
not_found
else
redirect_to streaming_api_url, status: 301
redirect_to streaming_api_url, status: 301, allow_other_host: true
end
end