The cookie generated by a Hobo app is generally called _appname_session. That's the Rails name, it's not chosen by Hobo.
Hobo generally only stores one thing in the session, session[:user] is the typed_id of the logged in user. You can also make Hobo store session[:previous_uri] by using the PreviousUriFilter along with `<after-submit>`. session[:return_to] is used by the authentication support code if you go to an unauthorized page so it can send you back there after bouncing you through login. Bryan On Fri, Jan 4, 2013 at 6:30 AM, Richard Beaumont <[email protected]> wrote: > Can you tell me what this cookie would normally be used for? > Thanks > > -- > You received this message because you are subscribed to the Google Groups > "Hobo Users" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/hobousers/-/laT_DEyHpxEJ. > 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. -- 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.
