Skip to content

Guoxweii/devise_code_authenticatable

 
 

Repository files navigation

DeviseCodeAuthenticatable

A Devise plugin for two-factor authenticatable.

Installation

Add this line to your Rails Gemfile:

gem 'devise_code_authenticatable'

Run:

rails generate devise_code_authenticatable:install

This will create a migration file in your db/migrate folder, then

rails db:migrate

Add :authenticatable to the model you want to enable code_authenticatable, also make sure :database_authenticatable is removed

class User < ActiveRecord::Base
  devise :database_authenticatable, :confirmable, :code_authenticatable
end

Usage

Customize views

This plugin is included with basic views, to customize the views you need to run

rails generate devise_code_authenticatable:views

License

The gem is available as open source under the terms of the MIT License.

About

code authentication extension for devise

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 90.5%
  • HTML 9.5%