On Mon, May 3, 2010 at 3:09 AM, Daniel <[email protected]> wrote: > I'm trying to use hobo with authlogic. Hobo is used only For the admin > area. > Hobo seems to be running ok but when I this line "session[:user] = > user.typed_id"
As I said before, the 'user' local you're referencing here isn't set by anything, so you're getting the typed_id of nil. Based on the Authlogic Railscast, I think you'll want to use this: session[:user] = @user_session.record.typed_id To interface cleanly with Hobo. --Matt Jones -- You received this message because you are subscribed to the Google Groups "Hobo Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/hobousers?hl=en.
