Yanıtlar:
Ray 4'te:
skip_before_action :verify_authenticity_token, except: [:create, :update, :destroy]
Ve Raylar 3:
skip_before_filter :verify_authenticity_token
Önceki sürümler için:
Bireysel işlemler için şunları yapabilirsiniz:
protect_from_forgery :only => [:update, :destroy, :create]
#or
protect_from_forgery :except => [:update, :destroy, :create]
Tüm bir denetleyici için şunları yapabilirsiniz:
skip_before_action :verify_authenticity_token
skip_forgery_protection
. API dokümanlarına bakın .
In Rails4 kullanmak skip_before_action
ile except
veya 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