From 8f0e8f8b3cb77233de6a47ecef4313735c4883d1 Mon Sep 17 00:00:00 2001 From: Ben Purinton Date: Thu, 14 Sep 2023 10:03:24 -0800 Subject: [PATCH] add config to dev --- config/environments/development.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/environments/development.rb b/config/environments/development.rb index 47a5d160..1db15c06 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -76,4 +76,7 @@ # Uncomment if you wish to allow Action Cable access from any origin. # config.action_cable.disable_request_forgery_protection = true + + # Allow POST authenticity on Codespaces in dev + config.action_controller.forgery_protection_origin_check = false end