Réponses:
Dans Rails 4:
skip_before_action :verify_authenticity_token, except: [:create, :update, :destroy]
Et Rails 3:
skip_before_filter :verify_authenticity_token
Pour les versions précédentes:
Pour les actions individuelles, vous pouvez faire:
protect_from_forgery :only => [:update, :destroy, :create]
#or
protect_from_forgery :except => [:update, :destroy, :create]
Pour un contrôleur entier, vous pouvez faire:
skip_before_action :verify_authenticity_token
skip_forgery_protection
. Consultez la documentation de l'API .
Dans Rails4, vous utilisez skip_before_action
avec 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