Skip to content

Instantly share code, notes, and snippets.

@chukitow
Created April 20, 2014 00:25
Show Gist options
  • Select an option

  • Save chukitow/11101579 to your computer and use it in GitHub Desktop.

Select an option

Save chukitow/11101579 to your computer and use it in GitHub Desktop.
class ApplicationController < ActionController::Base
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
protect_from_forgery with: :exception
before_filter :configure_permitted_parameters, if: :devise_controller?
protected
def configure_permitted_parameters
devise_parameter_sanitizer.for(:sign_up) << :username
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment