जवाबों:
रेल में 4:
skip_before_action :verify_authenticity_token, except: [:create, :update, :destroy]
और रेल 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
। एपीआई डॉक्स देखें ।
में 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