RailsCasts Pro episodes are now free!

Learn more or hide this

Eduardo Ludi's Profile

GitHub User: eduludi

Site: htttp://styledcode.com

Comments by Eduardo Ludi

Avatar

Add :password and :password_confirmation to Identity model as accessible attributes:

app/models/identity.rb
class Identity < OmniAuth::Identity::Models::ActiveRecord
  attr_accessible :email, :name, :password_digest, :password, :password_confirmation
  # ...
end