Sha256: ba239720b01bec0d1503d0eed917cef6b2881c168ac3885ace4bece766f04af5
Contents?: true
Size: 502 Bytes
Versions: 35
Compression:
Stored size: 502 Bytes
Contents
module SharedAdmin extend ActiveSupport::Concern included do devise :database_authenticatable, :registerable, :timeoutable, :recoverable, :lockable, :confirmable, :unlock_strategy => :time, :lock_strategy => :none, :allow_unconfirmed_access_for => 2.weeks, :reconfirmable => true validates_length_of :reset_password_token, :minimum => 3, :allow_blank => true validates_uniqueness_of :email, :allow_blank => true, :if => :email_changed? end end
Version data entries
35 entries across 35 versions & 6 rubygems