devise icon indicating copy to clipboard operation
devise copied to clipboard

Flexible authentication solution for Rails with Warden.

Results 275 devise issues
Sort by recently updated
recently updated
newest added

Hi everyone i've created my one gem which have engine on it `engine.rb` ```rb module Test class Engine < ::Rails::Engine isolate_namespace Test end end ``` `tests_controller.rb` ```rb module Test class...

## Environment - Ruby **3.2.2** - Rails **7.0.4** - Devise **4.9** ## Current behavior I'm using devise on multiple domains, similar to the subdomain setup described in the docs, with...

## Environment - Ruby **3.1.1** - Rails **7.0.4** - Devise **4.8.1** ## Current behavior I add the following to my devise configuration: ```ruby config.http_authenticatable = true config.http_authenticatable_on_xhr = false ```...

Hi @Carlosantoniodasilva and Devise team! Currently, Devise's minimum password length is 6 characters long without any strict requirements on uppercase and lowercase, letters and symbols. For example, 123456, would be...

## Pre-check I'm facing an issue when trying to use the find_or_initialize_with_errors method from Devise with the required_attributes parameter as a symbol. When I use the symbol as the value...

Hello Everyone, Devise is one of my favorite gems. It has a lot of features, and it makes authentication easier for Rails applications. However, some code should be overridden to...

I have custom validation logic for password length, and as such I'd like to skip the default validation from Devise. Please let me know if this patch would be accepted,...

Hello there **This would be better as a PR**, but as it is based on a tag (which we need) that does not work, so please forgive me to discuss...

If the user loads the password reset page with an expired or invalid password token, there is no point in showing the password+password_confirmation fields. The user would most likely want...

## Environment - Ruby **3.1.3** - Rails **6.1.7.3** - Devise **4.8.0** ## Current behavior I'm using `authenticatable` and have implemented a boolean flag on my `User` model called `deactivated` which...