devise
devise copied to clipboard
Flexible authentication solution for Rails with Warden.
Hi everyone, - Ruby v 2.6.3p32 - Rails v 6.0.2.1 - Devise v 4.7.1 I use three different Devise model with two domains. My routes.rb looks like this; ```ruby Rails.application.routes.draw...
- Devise **[4.8.1]** Hello everyone! It's a minor thing, but there is a slight inconsistency in the base devise views. Some use double quotes (like [confirmation/new](https://github.com/heartcombo/devise/blob/6d32d2447cc0f3739d9732246b5a5bde98d9e032/app/views/devise/confirmations/new.html.erb)), while others use single...
Rename Devise::Strategies::Authenticatable => PasswordAuthenticatable * To begin the process of refactoring Devise to support passkeys (https://github.com/heartcombo/devise/issues/5527), we need to decouple authentication from being specifically tied to passwords. * The first...
Adding the ability to set timeout_in in the config file as a proc that evaluates with the user as an argument
## Environment - Ruby 2.5.1 - Rails 5.2.4.2 - Devise 4.7.1 ## Current behavior I have a controller, which uses skip_before_action :authenticate_user! It works when no user is logged in....
This might change behavior slightly in that we were humanizing the error reason before... I'd prefer if we just let all messages read that I think. _Originally posted by @carlosantoniodasilva...
Devise sends email containing sensitive values such as confirmation URLs, password reset URLs, and unlock URLs. In most (all?) cases, these should only be sent to a single person so...
The other day I was trying to internationalize mailers on my application. I ended up copying the views to translate the mail content, which could be done by changing the...
When using devise on an API only rails application some controllers still tried to add to the `request.flash` object. - Use `#set_flash_message!` instead of `#set_flash_message` in `app/controllers/devise_controller.rb`, `app/controllers/devise/passwords_controller.rb`, and `app/controllers/devise/registrations_controller.rb`....