Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. resources :people, :path => "designers", :only => [:index, :show] do
  2. member do
  3. post 'add_favorite_designer'
  4. post 'remove_favorite_designer'
  5. end
  6. end
  7.  
  8. match '/people/*action', to: redirect {|p, req| "/designers/#{p[:action]}" }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement