Proxy to the authenticate method on warden :api: public
# File lib/rails_warden/controller_mixin.rb, line 40defauthenticate(*args)
warden.authenticate(*args)
end
authenticate!(*args)click to toggle source
Proxy to the authenticate method on warden :api: public
# File lib/rails_warden/controller_mixin.rb, line 46defauthenticate!(*args)
warden.authenticate!(*args)
end
logout(*args)click to toggle source
Logout the current user :api: public
# File lib/rails_warden/controller_mixin.rb, line 33deflogout(*args)
warden.raw_session.inspect# Without this inspect here. The session does not clear :|warden.logout(*args)
end