How to empty/destroy a session in rails?

后端 未结 5 2063
执念已碎
执念已碎 2020-12-04 10:40

I can\'t seem to find it anywhere... How do I delete/destroy/reset/empty/clear a user\'s session in Rails? Not just one value but the whole thing..

5条回答
  •  暖寄归人
    2020-12-04 11:00

    add this code to your ApplicationController

    def reset_session
      @_request.reset_session
    end
    

    ( Dont know why no one above just mention this code as it fixed my problem ) http://apidock.com/rails/ActionController/RackDelegation/reset_session

提交回复
热议问题