Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

this is my routes:

PUT    /welcome/:id(.:format)      welcome#update

I want remove the :id from the route definition.

in other words, I want to use the update function without sending an id.

so in my routes.rb, I tried to define:

resources :welcome
match '/welcome/:id' => 'welcome#update', :via => :put

then I ran rake routes, but nothing has happened.

share|improve this question

2 Answers

up vote 2 down vote accepted

Do you really want to use a put request? I think you should use the a custom action to handle this. But in case you want to override the default routing, you can do it this way

match 'welcome/' => 'welcome#update', :via => 'put'
resources :welcome, :except => [:update]
share|improve this answer

use put '/welcome' => 'welcome#update'before resources :welcome so it takes precedence

UPDATE: formatting

put '/welcome' => 'welcome#update'
resources :welcome
share|improve this answer
I wrote: put '/welcome' => 'welcome#update' resources :welcome but it doesn't work.. – Alon Shmiel Feb 5 at 12:19
updated my answer with better formatting. be reminded that when you try to send to /welcome/anything_here, it will not match the first route – jvnill Feb 5 at 12:25

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.