mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-04-03 06:59:14 +00:00
11 lines
289 B
Ruby
11 lines
289 B
Ruby
# frozen_string_literal: true
|
|
|
|
Openfoodnetwork::Application.routes.append do
|
|
namespace :order_management do
|
|
namespace :reports do
|
|
resource :bulk_coop, only: [:new, :create], controller: :bulk_coop
|
|
resource :enterprise_fee_summary, only: [:new, :create]
|
|
end
|
|
end
|
|
end
|