binarylogic/authlogic_example

undefined method `password' for #<User:0xb60b9814>

Opened this issue · 1 comments

Hi,I followed your tutorial to setup Authlogic.
I am getting this error when i try to create a new user.
Full trace

http://pastie.org/614421

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.