From d2b392b9ff25a5e347ae02635a2625e35114cde4 Mon Sep 17 00:00:00 2001 From: jimmay5469 Date: Wed, 18 Jul 2018 12:10:49 -0400 Subject: [PATCH] Update sobelow ignore list Sobelow was throwing an error because we are no longer calling :put_secure_browser_headers in router.ex, however, we have wrapped it with ExplorerWeb.CSPHeader and are still calling it. In the process it became apparent that having Config.CSRF in the ignore list wasn't actually doing anything so it has been removed. --- apps/explorer_web/.sobelow-conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/explorer_web/.sobelow-conf b/apps/explorer_web/.sobelow-conf index 64e13e0d6c..3a2eee6425 100644 --- a/apps/explorer_web/.sobelow-conf +++ b/apps/explorer_web/.sobelow-conf @@ -5,5 +5,5 @@ router: "lib/explorer_web/router.ex", exit: "low", format: "compact", - ignore: ["Config.CSRF"] + ignore: ["Config.Headers"] ]