Allow redirect to main CodeOcean host

When a file cannot be retrieved any longer, we send a redirect to the previous locations. As we usually enable a different render host, Rails sees this redirect as a redirect to another host (from the render host to the main CodeOcean host).
This commit is contained in:
Sebastian Serth
2022-12-19 16:06:47 +01:00
parent d22d95ba32
commit 17356c3045

View File

@ -12,7 +12,7 @@ class LiveStreamsController < ApplicationController
# Using the submission ID parameter would allow looking up the corresponding exercise ID
# Therefore, we just redirect to the root_path, but actually expect to redirect back (that should work!)
skip_authorization
redirect_back(fallback_location: root_path, alert: t('exercises.download_file_tree.gone'))
redirect_back(fallback_location: root_path, allow_other_host: true, alert: t('exercises.download_file_tree.gone'))
else
desired_file = params[:filename].to_s
runner = Runner.for(current_user, @submission.exercise.execution_environment)