mirror of
https://github.com/heartcombo/devise.git
synced 2026-04-28 03:00:29 -04:00
In order to use the `sign_in` helper along with the timeoutable module, we have to set `env["devise.skip_timeout"] = true` in the request. Currently, we do this in the sessions controller: https://github.com/plataformatec/devise/blob/master/app/controllers/devise/sessions_controller.rb#L7 This commit adds a note to the `sign_in` documentation to help other developers that want to use custom warden strategies. Closes #4773