18 lines
251 B
Ruby
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
|