17 lines
233 B
Ruby
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
|