We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Fix wording for clarity in "email update" paragraph
Describe how to allow users to log in while not confirmed
Change order of method calls in rollback
Suggest - Make deleting index explicit in confirmable migration
Updated How To: Add :confirmable to Users (markdown)
Add section about skip_reconfirmation! to force update the email without reconfirmation
I did this change as I assumed Devise signs in the user after successful confirmation but this is not the case. I think by adding the information to let readers know about explicitly signing in the user will help them. Thanks
Removed needless comments. Now works with sqlite and others using ActiveRecord method
Prior broke on sqlite, switched to using ActiveRecord approach instead
Using rails instead of rake for db:migrate command.
revising text for clarification
Fix "Redirecting user" session
Clarifies the need for the `config.reconfirmable` setting. Points to one more step: configuring the mailer.
clarifying that this assumes the auth model/table is user/s
Add explanation on how to redirect user after confirmation
Add some alternatives when `confirmed_at = NOW()` is not working on SQLite.
Use raw SQL for setting confirmed_at rather than referencing User class
for newbies like myself: restart the server after db migrate
Fix typo (with s/b will)
The existing code creates an app/views/confirmable/ with all the devise templates in.
User new hash syntax
at least in rails 4, self.up and self.down don't make the actual migration
wrong class name of migration. Fixed