undefined method `password' for #<User:0xb60b9814>
deepakprasanna opened this issue · 1 comments
deepakprasanna commented
Hi,I followed your tutorial to setup Authlogic.
I am getting this error when i try to create a new user.
Full trace
rsyring commented
Make sure your User class is using acts_as_authentic:
#app/models/user.rb
class User < ActiveRecord::Base
acts_as_authentic
end
I did all kinds of troubleshooting and had somehow removed this when troubleshooting a different problem.