i intend to allow the user click on the link sent to their email address after registration to have their account activated. How do i implement this? Thank You
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There are two ways to do this:
recode the whole stuff yourself, basically: generate a token, link it to the user’s account, add a link in the mail with the token
or use the builtin
confirmablefunctionality in Devise: https://github.com/plataformatec/deviseI’d head towards the second option