I have the following restful structure:
- My login page uses the session/new action
- My signup page the users/new action
- My logout page uses the session/destroy action
- My register process uses the users/create action
I need 3 more actions for:
- I forgot my password page
- Start forgotten password action (send email)
- Reset password based on token
Where do these 3 actions fit in a restful world?
To clarify:
I know I can create whatever actions on my existing session and user controllers (eg. a reset_password get action or a start_reset_password post action) it just doesn't really sit right, it seems I am trying to make these controllers do too much work.