2015-04-10 20:18:49 +02:00
|
|
|
Rails.application.routes.draw do
|
|
|
|
scope '/:foodcoop' do
|
|
|
|
namespace :current_orders do
|
2023-05-12 13:01:12 +02:00
|
|
|
resources :ordergroups, only: %i[index show] do
|
2015-04-10 20:18:49 +02:00
|
|
|
collection do
|
|
|
|
get :show_on_group_order_article_create
|
|
|
|
get :show_on_group_order_article_update
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-12 13:01:12 +02:00
|
|
|
resources :articles, only: %i[index show] do
|
2015-04-10 20:18:49 +02:00
|
|
|
collection do
|
|
|
|
get :show_on_group_order_article_create
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-12 13:01:12 +02:00
|
|
|
resource :orders, only: [:show] do
|
2015-04-10 20:18:49 +02:00
|
|
|
collection do
|
|
|
|
get :my
|
|
|
|
get :receive
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-12 13:01:12 +02:00
|
|
|
resources :group_orders, only: [:index]
|
2015-04-10 20:18:49 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|