Respostas:
No Rails 4:
skip_before_action :verify_authenticity_token, except: [:create, :update, :destroy]
E Rails 3:
skip_before_filter :verify_authenticity_token
Para versões anteriores:
Para ações individuais, você pode:
protect_from_forgery :only => [:update, :destroy, :create]
#or
protect_from_forgery :except => [:update, :destroy, :create]
Para um controlador inteiro, você pode fazer:
skip_before_action :verify_authenticity_token
skip_forgery_protection
. Consulte os documentos da API .
No Rails4 você usa skip_before_action
com except
ou 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