parsley/config/routes.rb
2016-01-18 12:58:54 -06:00

19 lines
272 B
Ruby

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