Devise is an authentication gem for Ruby-on-Rails.
Can Active Admin use my current Devise user model? It already has a column named admin, and if it's true, …
ruby-on-rails-3 devise activeadminI want to specifically set a field when a user is created. I have class RegistrationsController < Devise::RegistrationsController def …
ruby-on-rails devise overriding crudI am using Devise for Rails. In the default registration process, Devise requires users to type the password twice for …
ruby-on-rails registration deviseI have a before_filter in my ApplicationController; that is, for every controller in my project. How can I skip_…
ruby-on-rails devise before-filterSolution Thanks to this gist form Steven Harman, I got it working. devise_mail_helpers.rb module Features module MailHelpers …
ruby-on-rails devise ruby-on-rails-4 factory-bot rspec2I am a Rails newbie. I am working on a small Rails4 project trying to improve my skills. I am …
ruby-on-rails-4 devise railstutorial.orgHow I can disable all Devise gem flash messages ("successfully signed in","you logged out")? Thanks.
ruby-on-rails deviseWhen I say layout I don't mean just simply the views, I generate those. On all my own mailers I'm …
ruby-on-rails ruby-on-rails-3 devise mailerI am working on a web-app using Devise and Rails 4. I have a User model which I have extended with 2 …
ruby-on-rails devise nested-forms nested-attributes strong-parametersI'm using Devise's built in before_filter :authenticate_user!. I want to call my own custom method in my application …
ruby-on-rails ruby-on-rails-3 devise before-filter