1

を使用しましdevise 2.2.4たが、ログイン ページremember_meオプションが機能しません。エラーもスローされず、テーブルのremember_atフィールドに何も保存されていません。user

class User < ActiveRecord::Base
  # Include default devise modules. Others available are:
  # :token_authenticatable, :confirmable,
  # :lockable, :timeoutable and :omniauthable
  devise :database_authenticatable, :registerable,:token_authenticatable,:recoverable,      :rememberable, :trackable, :validatable#,:authentication_keys => [:login]

  # Setup accessible (or protected) attributes for your model
  attr_accessible :email, :password, :password_confirmation, :remember_me, :username, :dealer_detail_id
  validates :username, :password, :password_confirmation, :presence => true
  validates_uniqueness_of :username #, :if => :email_changed?

end
4

0 に答える 0