RailsCasts Pro episodes are now free!

Learn more or hide this

Jace's Profile

GitHub User: jprinc16

Site: www.utk.edu

Comments by Jace

Avatar

Same issue for me.

Edit:

It is a relatively simple fix for rails 4 due to the lack of attr_accessible.

application_controller.rb
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

  # Devise Stuff
  before_filter :configure_permitted_parameters, if: :devise_controller?

  protected

  def configure_permitted_parameters
    devise_parameter_sanitizer.for(:sign_up) { |u| u.permit(:email, :password, :password_confirmation, :username) }
  end
  # End Devise Stuff
end