私は次のような呼び出しを使用しようとしていました:
User.first.ensure_reset_password_token!
エラーが表示されます:
NoMethodError: undefined method `ensure_reset_password_token!'
私のモデルには次のものがあります。
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable, :token_authenticatable
ルートに設定しました:
devise_for :users, controllers: { registrations: "users/passwords" }
ここから保護されていないすべてのメソッドを使用できるのに、なぜこのメソッドを使用できないのですかhttp://rubydoc.info/github/plataformatec/devise/master/Devise/Models/Recoverable ?