Created
October 6, 2017 10:37
-
-
Save amitpatelx/9e125f8c3dff795855f8c74a29f4e4cb to your computer and use it in GitHub Desktop.
Typical Devise User Model
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class User < ApplicationRecord | |
# Include default devise modules. Others available are: | |
# :confirmable, :lockable, :timeoutable and :omniauthable | |
devise :database_authenticatable, :registerable, | |
:recoverable, :rememberable, :trackable, :validatable | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment