On Sun, Jan 10, 2010 at 2:47 PM, pharrington <xenogene...@gmail.com> wrote:
> On Jan 10, 1:51 pm, Ale Ds <li...@ruby-forum.com> wrote:
>> Hi,
>> my question is about routing:
>> is it possible to remove a restful action from map.resources ?
>>
>> if few words:
>> I have a City model, and I've declared in routes.rb file:
>> map.resources :users
>>
>> then I obtain ALL restful action, but I don't need neither delete and
>> update action.
>>
>> Do you know some way to remove them ?
>>
>> Thank you,
>> Alessandro
>> --
>> Posted viahttp://www.ruby-forum.com/.
>
> As far as you know you can't.

Sure you can:

    map.resources :users, :except => [:delete, :update]

there's also an :only option

-- 
Rick DeNatale

Blog: http://talklikeaduck.denhaven2.com/
Twitter: http://twitter.com/RickDeNatale
WWR: http://www.workingwithrails.com/person/9021-rick-denatale
LinkedIn: http://www.linkedin.com/in/rickdenatale
-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-t...@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.


Reply via email to