Looking at various examples on how to define additional actions in map.resources. What I don’t see is do you add them all together or seperate lines. Like:
map.resources :positions, :member => {:description => :get}
So if I wanted to add :collection => {:search => :get}, do I make a comma and add it in after the description => get or make a new line:
mp.resources :positions, :collection => {:search => :get} ?
Good question huh ? TIA Stuart