about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
authorAkihiko Odaki (@fn_aki@pawoo.net) <akihiko.odaki.4i@stu.hosei.ac.jp>2017-06-02 03:56:55 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-06-01 20:56:55 +0200
commit10768aa20418a5c3d547da33d80b9ebe3f34efb0 (patch)
tree777447fa4ba96b3e8be51c39cec48233de472460 /app
parente98559c3ff79ccc9b5b866c5351416dd58f2ebee (diff)
Spec response for forgery (#3248)
Remove protect_from_forgery in ApiController, which is disabled by the
following skip_before_action, as well.
Diffstat (limited to 'app')
-rw-r--r--app/controllers/api_controller.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/controllers/api_controller.rb b/app/controllers/api_controller.rb
index 1c67b6fdc..1e72549bd 100644
--- a/app/controllers/api_controller.rb
+++ b/app/controllers/api_controller.rb
@@ -4,8 +4,6 @@ class ApiController < ApplicationController
   DEFAULT_STATUSES_LIMIT = 20
   DEFAULT_ACCOUNTS_LIMIT = 40
 
-  protect_from_forgery with: :null_session
-
   skip_before_action :verify_authenticity_token
   skip_before_action :store_current_location