Відповіді:
У рейках 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
. Див. Документи 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