- Change activation token parameter from `activation_token` to `id` in the account activation link.
- This ensures the link correctly references the user activation token for account activation.
- Remove unnecessary line breaks in the activation link
- Clean up the formatting of the email template
This commit improves the readability of the account activation
email template by removing redundant line breaks and ensuring
consistent formatting. No functional changes were made to the
link or its behavior.
- Adjust spacing in the email parameter of the link_to helper
- Ensure consistent formatting in the account activation email
This change improves the readability of the code by ensuring
consistent spacing in the parameters, which can help prevent
errors in future modifications.
- Implement AccountActivationsController for activation logic
- Create UserMailer for sending activation emails
- Update SessionsController to handle unactivated users
- Modify UsersController to restrict access to activated users
- Add activation fields to User model and database migration
- Create views for account activation emails
- Add tests for account activation functionality