We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Updated How To: Add :confirmable to Users (markdown)
For Rails 4 `remove_column` accept only one column: changed to `remove_columns`
:unconfirmed_email shouldn't be added if not using reconfirmable
:unconfirmed_email shouldn't be removed if not using reconfirmable
The unconfirmed_email field is required. A method missing exception is thrown when attempting to confirm the email without this field.
Correct a typo : intializers -> initializers
"up" and "down" should be class methods
log in (as a verb) is two words
I prefer to update the confirmed_at timestamps in the migration, so that there are no time spans when existing users can't login. It also makes updating production systems easier.
Created How To: Add :confirmable to Users (markdown)
Destroyed How To: Add :confirmable to Users (markdown)
Consolidating the block of code for updating users into a single statement
Added "`" around the file name.
Added note for config.reconfirmable = false.
Changed from confirmable method to Rails helpers.