Hi All,
there are several places in my routes.rb file where I say:
map.resources :foo, :only => [:show, :index]
and I would like to be able to say:
map.resources :foo, :readonly => true
..or something of the like. I know this may seem kind of pointless, since it only saves a couple of characters, but I'd like to know how to do it so that I can add other more complicated options in the future.
Thx
-C