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

## Environment - Ruby 3.1.2 - Rails 7.0.2.2 - Devise 4.8.1 ## Current behavior **email/password login** 1. user types in email & password (password is wrong) 2. user clicks login...

I have completed [the official tutorial to add Omniauth](https://github.com/heartcombo/devise/wiki/OmniAuth:-Overview). Now when some users choose to use "Sign in with Google" I want to disable the normal login with email and...

## Environment - Ruby **3.0.3p157** - Rails **7.0.0** - Devise **4.8.1** ## Current behavior When clicking the default "Cancel my account" link, the data-confirm is not triggering, and instead it...

## Environment - Ruby **3.0.4** - Rails **7.0.2.4** - Devise **4.8.1** ## Current behavior Currently the code is breaking with this line ``` devise :invitable ``` I am receiving this...

## Environment - Ruby **3.0.4p208** - Rails **6.1.6** - Devise **4.8.1** ## Current behavior When calling `devise_for` with a `format: false` parameter, i.e.: ```ruby # frozen_string_literal: true Rails.application.routes.draw do devise_for...

I tried to fix this two issues: https://github.com/heartcombo/devise/issues/5448, https://github.com/heartcombo/devise/issues/5446.

## Pre Check - Create a new Rails 7 app `rails new test_app --api` - Add devise - run `rails g devise:install` - run `rails g devise User` - POST...

Hello, ## Environment - Ruby **2.7.1p83** - Rails **6.0.3.3** - Devise **4.7.3** ## Current behavior When I setup my app in production mode (in local or in Docker with Postgres),...

Environment: ruby 3.1.1 rails 7.0.3 devise 4.8.1 Reproduce: `rails g devise:install && rails g devise user` `rails test` Result: All test fail because user fixtures fail unique constraint `ActiveRecord::RecordNotUnique: RuntimeError:...

In regular HTML `` is a void element, so it doesn't need a closing tag or a closing slash. See the WhatWG spec here: https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-br-element Many of the shared templates...