Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to confirm user emails, by sending them a link to click in the email body. I would like it to be something like GET /users/23/confirm/1234 . This would confirm user #23 with the verification key 1234.

I tried :


resources :users do
    member do
       match '/confirm/:token' => 'users#confirm'
    end
end

But I'm unable to set up the link_to method appropriately in my email body. Any suggestions ? Thanks!

share|improve this question

1 Answer

up vote 2 down vote accepted

You can jump on to the console and type

$ rake routes

This will tell you the named routes for all of your possible routes. This particular route will not be in there as you have not named it. You need the :as param

match '/confirm/:token' => 'users#confirm', :as => :confirm

Then the route will probably be (you can confirm with rake routes):

users_confirm_path(user_id, token)
share|improve this answer
rake routes is very helpful. Setting it up like you wrote gives confirm_users_path(user_id, token). Thanks a lot ! – Myna Jul 10 '12 at 2:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.