RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: eduludi
Site: htttp://styledcode.com
Yes, that's true! Thanks
Add :password and :password_confirmation to Identity model as accessible attributes:
:password
:password_confirmation
class Identity < OmniAuth::Identity::Models::ActiveRecord attr_accessible :email, :name, :password_digest, :password, :password_confirmation # ... end
Yes, that's true! Thanks
Add
:password
and:password_confirmation
to Identity model as accessible attributes: