উত্তর:
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