parsley/config/routes.rb
Dan Elbert 3b4134f684 units
2016-01-14 15:22:15 -06:00

17 lines
233 B
Ruby

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