Fix Content-Security-Policy when using sso-redirect (#32241)

This commit is contained in:
Claire 2024-10-04 10:50:36 +02:00
parent 55b5364534
commit 81cd489208

View file

@ -13,7 +13,7 @@ module WebAppControllerConcern
policy = ContentSecurityPolicy.new
if policy.sso_host.present?
p.form_action policy.sso_host
p.form_action policy.sso_host, -> { "https://#{request.host}/auth/auth/" }
else
p.form_action :none
end