On Feb 25, 7:51 pm, John Merlino <[email protected]> wrote:
> def login > if request.post? > if session[:user] = User.authenticate(params[:user][:email], This is storing stuff in session[:user] > > def current_user > @current_user ||= session[:user_id] && User.find(session[:user_id]) > end and this is checking session[:user_id]. Furthermore one appears to be storing an actual user object whereas your other piece of code seems to be expecting there to be just an id. Fred -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" 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/rubyonrails-talk?hl=en.

