You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to hit the password reset endpoint, but Rails spits this error: NoMethodError: undefined method 'allow_password_change='. It's breaking in the passwords controller.
Do I have to add this method to the model manually? Here's my current User model:
class User < ActiveRecord::Base
devise :database_authenticatable,
:registerable,
:recoverable,
:rememberable,
:validatable,
:confirmable
include DeviseTokenAuth::Concerns::User
end
Using Version 0.1.43.beta1 (from master branch).
The text was updated successfully, but these errors were encountered:
hansy
changed the title
NoMethodError: undefined method `allow_password_change='
NoMethodError: undefined method 'allow_password_change='
Dec 15, 2017
Trying to hit the password reset endpoint, but Rails spits this error:
NoMethodError: undefined method 'allow_password_change='
. It's breaking in the passwords controller.Do I have to add this method to the model manually? Here's my current
User
model:Using Version 0.1.43.beta1 (from master branch).
The text was updated successfully, but these errors were encountered: