-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Errors after removing confirmable #397
Comments
Yeah, mee to! Someone solved? |
@Andrew-Max @fabiancarlos I just ran into the same issue. The problem happens if your
|
Hi, I have a different error, while removing :confirmable from the When I make the post request, I have an error 500 And here is the stack
(When I put :confirmable back in place, it works well). Looking at rails/callback.rb l.630, it seems that
Does anyone have an idea how to fix this? Thank you very much for your help. |
Seems like the related issue has a possible fix, so closing for now. |
@MarketingAjay I accidently put the include concern first and it caused this problem. I had no idea why it was asking for confirmable even tho i removed that from my user model. Thanks for the fix, works perfectly !! |
seems exactly like : #58 although that issue was marked as resolved and I still see the error.
I removed
devise :confirmable
and removed the confirmable lines from the migration by hand. Afterwards i see
NameError: undefined local variable or method
confirmed_at'`as suggested in the other issue, adding the lines
To the my user model solves the problem but I would prefer to avoid this give that it is hacky
The text was updated successfully, but these errors were encountered: