How to automatically keep user remembered in Devise

后端 未结 3 1382
误落风尘
误落风尘 2020-12-10 14:16

I am building an app in which I would like the users to automatically be remembered on their computers, without having a \"remember me\" check box.

I read that I may

3条回答
  •  情歌与酒
    2020-12-10 15:16

    If you read this pull request in devise: https://github.com/plataformatec/devise/issues/1513, the sanctioned way to remember by default appears to simply define on your User class:

    class User
       def remember_me
         (super == nil) ? true : super
       end
    end
    

提交回复
热议问题