Scoping - @account.user_sessions.build
Reported by Vladimir Suchy | November 17th, 2008 @ 05:31 AM
Hi,
I'm using authlogic in application where users belongs_to account. According to "Scoping" section in README - I'm using
@account.user_sessions.find
to get current user session and
@user_session = @account.user_sessions.build(params[:user_session])
@user_session.save
to create new user session. @account.user_sessions.find works, but
@account.user_sessions.build raises:
undefined method 'build' for #<Authlogic::Session::AuthenticatesManyAssociation:0x250ed60>
Thanks
Comments and changes to this ticket
-

Ben Johnson November 17th, 2008 @ 12:56 PM
- State changed from new to resolved
Right, I don't have built in there, but I should. I added that in if you want to update. Otherwise just use .new. Let me know if you have any other problems. Thanks.
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile »
Object based authentication solution that handles all of the non sense for you. It's as easy as ActiveRecord is with a database.