allow CSP reports to be sent when header isn't set by Discourse (#6594)

This commit is contained in:
Leo McArdle 2018-11-14 21:23:29 +00:00 committed by Kyle Zhao
parent 4bac77800a
commit 7bc121a065
2 changed files with 2 additions and 2 deletions

View File

@ -30,6 +30,6 @@ class CspReportsController < ApplicationController
end
def report_collection_enabled?
ContentSecurityPolicy.enabled? && SiteSetting.content_security_policy_collect_reports
SiteSetting.content_security_policy_collect_reports
end
end

View File

@ -37,7 +37,7 @@ describe CspReportsController do
SiteSetting.content_security_policy_report_only = false
SiteSetting.content_security_policy_collect_reports = true
send_report
expect(response.status).to eq(404)
expect(response.status).to eq(200)
SiteSetting.content_security_policy = true
send_report