parsley/config/routes.rb
2016-01-14 18:56:45 -06:00

18 lines
251 B
Ruby

Rails.application.routes.draw do
resources :recipes
resources :ingredients, except: [:show] do
collection do
constraints format: 'json' do
get :search
get :prefetch
end
end
end
root 'recipes#index'
end