39

Devise2.1.2とRails3.2.6の使用

他の人がこの問題に遭遇した場合に備えて、このQ&Aを行っています。これは、ドキュメントがほとんど散らばっていたためです。

Deviseこのエラーは、ロック可能として設定しようとすると発生する可能性があります。

undefined local variable or method `locked_at' for [someClass]

これは、モデルに適切な属性がないことを意味します。

前提条件:config / initializers/devise.rbで以下を設定します

# ==> Configuration for :lockable
# Defines which strategy will be used to lock an account.
# :failed_attempts = Locks an account after a number of failed attempts to sign in.
# :none            = No lock strategy. You should handle locking by yourself.
config.lock_strategy = :failed_attempts

# Defines which key will be used when locking and unlocking an account
config.unlock_keys = [ :email ]

# Defines which strategy will be used to unlock an account.
# :email = Sends an unlock link to the user email
# :time  = Re-enables login after a certain amount of time (see :unlock_in below)
# :both  = Enables both strategies
# :none  = No unlock strategy. You should handle unlocking by yourself.
config.unlock_strategy = :email

# Number of authentication tries before locking an account if lock_strategy
# is failed attempts.
config.maximum_attempts = 20

# Time interval to unlock the account if :time is enabled as unlock_strategy.
# config.unlock_in = 1.hour

以下を含むようにモデルを設定しますdevise :lockable

class Example < ActiveRecord::Base
  # Include default devise modules. Others available are:
  # :token_authenticatable, :confirmable,
  # :lockable, :timeoutable and :omniauthable
  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable, :lockable
4

2 に答える 2

66

Deviseモデルにこれらの3つの属性が必要です。したがって、次の移行を生成して実行します。

class AddLockableToExamples < ActiveRecord::Migration
  def change
    add_column :examples, :failed_attempts, :integer, default: 0
    add_column :examples, :unlock_token, :string # Only if unlock strategy is :email or :both
    add_column :examples, :locked_at, :datetime
  end
end

これが他の誰かのgoogle-fuの時間を節約することを願っています。

于 2012-08-10T22:44:35.660 に答える
21

デバイス移行でこの文字列のコメントを外すだけです:

  ## Lockable
  # t.integer  :failed_attempts, :default => 0 # Only if lock strategy is :failed_attempts
  # t.string   :unlock_token # Only if unlock strategy is :email or :both
  # t.datetime :locked_at
于 2012-08-29T07:48:35.113 に答える