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

pull/32248/head
Claire 2024-10-04 10:50:36 +02:00 committed by GitHub
parent cf28104317
commit 49407e7623
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

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