Sha256: 6cea2db1435667ce1e8f907bf5dba3dc5c3484e1b944e3fcb33c04247ebcc741
Contents?: true
Size: 541 Bytes
Versions: 37
Compression:
Stored size: 541 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 def raw_confirmation_token @raw_confirmation_token end end
Version data entries
37 entries across 37 versions & 8 rubygems