able to gain access to current_user in my efforts (I'm using Devise for
authentication.)
I found a sequence from SO that allows me to successfully login via IRB and
access a page response:
ApplicationController.allow_forgery_protection = false
app.post('/sign_in', {"user"=>{"login"=>"some-login-id", "password"=>"some-password"}})
app.get '/some_other_path_that_only_works_if_logged_in'
pp app.response.body
app.post('/sign_in', {"user"=>{"login"=>"some-login-id", "password"=>"some-password"}})
app.get '/some_other_path_that_only_works_if_logged_in'
pp app.response.body
app.session
I've tried everything I can think of to try to get to current_user via app
and app.session, but no luck. How can I access current_user?
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/nCXP5A2bym0J.
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.