Merge pull request #13 from jviney/master

CSP endpoint only accepts post requests.
This commit is contained in:
Neil Matatall 2013-02-03 11:46:14 -08:00
Родитель 2f318b59a4 e7cc7fa678
Коммит 982d2485f5
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,3 @@
Rails.application.routes.draw do
match SecureHeaders::ContentSecurityPolicy::FF_CSP_ENDPOINT => "content_security_policy#scribe"
end
post SecureHeaders::ContentSecurityPolicy::FF_CSP_ENDPOINT => "content_security_policy#scribe"
end