我的rails 3应用程序中有一个奇怪的问题。 由于我不知道的原因,用户不能再退出。我没有错误消息,没有路由问题,我完全重定向,但会话始终处于活动状态。
我的设计/ registration_controller看起来像这样
# DELETE /resource
def destroy
resource.destroy
Devise.sign_out_all_scopes ? sign_out : sign_out(resource_name)
set_flash_message :notice, :destroyed if is_navigational_format?
respond_with_navigational(resource){ redirect_to after_sign_out_path_for(resource_name) }
end
我有点失落,因为之前都有效,但现在已经不行了,我不知道这是你之前做过的页面更新还是其他什么。
我可以在哪里查看会话?
感谢。