mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-04-05 07:19:14 +00:00
12 lines
272 B
Ruby
12 lines
272 B
Ruby
# frozen_string_literal: true
|
|
|
|
DfcProvider::Engine.routes.draw do
|
|
namespace :api do
|
|
scope :dfc_provider, as: :dfc_provider, path: '/dfc_provider' do
|
|
resources :enterprises, only: :none do
|
|
resources :products, only: [:index]
|
|
end
|
|
end
|
|
end
|
|
end
|