Jawaban:
Dalam Rails 4:
skip_before_action :verify_authenticity_token, except: [:create, :update, :destroy]
Dan Rel 3:
skip_before_filter :verify_authenticity_token
Untuk versi sebelumnya:
Untuk tindakan individu, Anda dapat melakukan:
protect_from_forgery :only => [:update, :destroy, :create]
#or
protect_from_forgery :except => [:update, :destroy, :create]
Untuk seluruh pengontrol, Anda dapat melakukan:
skip_before_action :verify_authenticity_token
skip_forgery_protection
. Lihat dokumentasi API .
Di Rails4 Anda gunakan skip_before_action
dengan except
atau 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