回答:
Rails 4の場合:
skip_before_action :verify_authenticity_token, except: [:create, :update, :destroy]
そしてRails 3:
skip_before_filter :verify_authenticity_token
以前のバージョンの場合:
個々のアクションについて、次のことができます。
protect_from_forgery :only => [:update, :destroy, :create]
#or
protect_from_forgery :except => [:update, :destroy, :create]
コントローラ全体に対して、次のことができます。
skip_before_action :verify_authenticity_token
skip_forgery_protection
。APIドキュメントを参照してください。
でRails4あなたが使用skip_before_action
しexcept
たりonly
。
class UsersController < ApplicationController
skip_before_action :verify_authenticity_token, only: [:create]
skip_before_action :some_custom_action, except: [:new]
def new
# code
end
def create
# code
end
protected
def some_custom_action
# code
end
end