2011-05-11 12:21:21 +02:00
|
|
|
Foodsoft::Application.routes.draw do
|
2010-03-20 02:26:30 +01:00
|
|
|
|
2011-06-19 20:47:27 +02:00
|
|
|
get "order_comments/new"
|
|
|
|
|
|
|
|
get "comments/new"
|
|
|
|
|
2011-05-11 13:38:46 +02:00
|
|
|
get "sessions/new"
|
|
|
|
|
2015-01-02 17:40:21 +01:00
|
|
|
root to: 'sessions#redirect_to_foodcoop', as: nil
|
2013-06-06 04:29:53 +02:00
|
|
|
|
2012-08-24 19:52:38 +02:00
|
|
|
scope '/:foodcoop' do
|
2009-01-15 18:26:37 +01:00
|
|
|
|
2011-05-11 12:21:21 +02:00
|
|
|
# Root path
|
2015-01-02 17:40:21 +01:00
|
|
|
root to: 'home#index'
|
2009-08-02 18:12:13 +02:00
|
|
|
|
2011-05-11 13:38:46 +02:00
|
|
|
########### Sessions
|
|
|
|
|
2015-01-02 17:40:21 +01:00
|
|
|
get '/login' => 'sessions#new', as: 'login'
|
|
|
|
get '/logout' => 'sessions#destroy', as: 'logout'
|
2013-10-30 01:56:23 +01:00
|
|
|
get '/login/forgot_password' => 'login#forgot_password', as: :forgot_password
|
|
|
|
post '/login/reset_password' => 'login#reset_password', as: :reset_password
|
|
|
|
get '/login/new_password' => 'login#new_password', as: :new_password
|
2014-10-05 20:35:28 +02:00
|
|
|
patch '/login/update_password' => 'login#update_password', as: :update_password
|
2014-02-20 15:04:53 +01:00
|
|
|
match '/login/accept_invitation/:token' => 'login#accept_invitation', as: :accept_invitation, via: [:get, :post]
|
2015-01-02 17:40:21 +01:00
|
|
|
resources :sessions, only: [:new, :create, :destroy]
|
2011-05-11 13:38:46 +02:00
|
|
|
|
2015-01-02 17:40:21 +01:00
|
|
|
get '/foodcoop.css' => 'styles#foodcoop', as: 'foodcoop_css'
|
2014-08-22 12:06:35 +02:00
|
|
|
|
2011-05-11 12:21:21 +02:00
|
|
|
########### User specific
|
2009-01-06 11:49:19 +01:00
|
|
|
|
2015-01-02 17:40:21 +01:00
|
|
|
get '/home/profile', as: 'my_profile'
|
|
|
|
patch '/home/update_profile', as: 'update_profile'
|
|
|
|
get '/home/ordergroup' => 'home#ordergroup', as: 'my_ordergroup'
|
|
|
|
post '/home/cancel_membership' => 'home#cancel_membership', as: 'cancel_membership'
|
2011-05-11 12:21:21 +02:00
|
|
|
|
|
|
|
############ Orders, ordering
|
|
|
|
|
|
|
|
resources :orders do
|
|
|
|
member do
|
|
|
|
post :finish
|
|
|
|
post :add_comment
|
2013-12-18 21:06:05 +01:00
|
|
|
|
|
|
|
get :receive
|
|
|
|
post :receive
|
2014-10-05 20:35:28 +02:00
|
|
|
|
2013-12-31 13:46:25 +01:00
|
|
|
get :receive_on_order_article_create
|
2013-12-30 14:34:26 +01:00
|
|
|
get :receive_on_order_article_update
|
2011-05-11 12:21:21 +02:00
|
|
|
end
|
2013-12-31 11:41:14 +01:00
|
|
|
|
|
|
|
resources :order_articles
|
2011-05-11 12:21:21 +02:00
|
|
|
end
|
|
|
|
|
2012-08-24 11:11:40 +02:00
|
|
|
resources :group_orders do
|
2015-01-02 17:40:21 +01:00
|
|
|
get :archive, on: :collection
|
2011-06-19 15:30:33 +02:00
|
|
|
end
|
2011-05-11 12:21:21 +02:00
|
|
|
|
2014-01-23 16:17:16 +01:00
|
|
|
resources :group_order_articles
|
|
|
|
|
2015-01-02 17:40:21 +01:00
|
|
|
resources :order_comments, only: [:new, :create]
|
2011-06-19 20:47:27 +02:00
|
|
|
|
2011-05-11 12:21:21 +02:00
|
|
|
############ Foodcoop orga
|
|
|
|
|
2015-01-02 17:40:21 +01:00
|
|
|
resources :invites, only: [:new, :create]
|
2011-05-11 12:21:21 +02:00
|
|
|
|
|
|
|
resources :tasks do
|
|
|
|
collection do
|
|
|
|
get :user
|
|
|
|
get :archive
|
|
|
|
get :workgroup
|
|
|
|
end
|
2012-10-08 21:52:03 +02:00
|
|
|
member do
|
|
|
|
post :accept
|
|
|
|
post :reject
|
|
|
|
post :set_done
|
|
|
|
end
|
2011-05-11 12:21:21 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
namespace :foodcoop do
|
2015-01-02 17:40:21 +01:00
|
|
|
root to: 'users#index'
|
2011-05-11 12:21:21 +02:00
|
|
|
|
2015-01-02 17:40:21 +01:00
|
|
|
resources :users, only: [:index]
|
2011-05-11 12:21:21 +02:00
|
|
|
|
2015-01-02 17:40:21 +01:00
|
|
|
resources :ordergroups, only: [:index]
|
2009-01-06 11:49:19 +01:00
|
|
|
|
2015-01-02 17:40:21 +01:00
|
|
|
resources :workgroups, only: [:index, :edit, :update]
|
2011-05-11 12:21:21 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
########### Article management
|
|
|
|
|
|
|
|
resources :stock_takings do
|
|
|
|
collection do
|
|
|
|
get :fill_new_stock_article_form
|
|
|
|
post :add_stock_article
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-01-02 17:40:21 +01:00
|
|
|
resources :stock_articles, controller: 'stockit' do
|
2013-12-07 11:20:03 +01:00
|
|
|
get :copy
|
2011-05-11 12:21:21 +02:00
|
|
|
collection do
|
2013-12-07 16:42:25 +01:00
|
|
|
get :derive
|
2014-10-05 20:35:28 +02:00
|
|
|
|
2013-12-07 11:20:03 +01:00
|
|
|
get :index_on_stock_article_create
|
|
|
|
get :index_on_stock_article_update
|
2014-10-05 20:35:28 +02:00
|
|
|
|
2013-12-07 11:20:03 +01:00
|
|
|
get :show_on_stock_article_update
|
2011-05-11 12:21:21 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :suppliers do
|
2015-01-02 17:40:21 +01:00
|
|
|
get :shared_suppliers, on: :collection
|
2011-05-11 12:21:21 +02:00
|
|
|
|
|
|
|
resources :deliveries do
|
2013-12-07 16:42:25 +01:00
|
|
|
collection do
|
|
|
|
post :add_stock_change
|
2014-10-05 20:35:28 +02:00
|
|
|
|
2013-12-07 16:42:25 +01:00
|
|
|
get :form_on_stock_article_create
|
|
|
|
get :form_on_stock_article_update
|
|
|
|
end
|
2011-05-11 12:21:21 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
resources :articles do
|
|
|
|
collection do
|
|
|
|
post :update_selected
|
|
|
|
get :edit_all
|
|
|
|
post :update_all
|
|
|
|
get :upload
|
|
|
|
post :parse_upload
|
|
|
|
post :create_from_upload
|
|
|
|
get :shared
|
|
|
|
get :import
|
|
|
|
post :sync
|
2013-04-08 01:00:49 +02:00
|
|
|
post :update_synchronized
|
2011-05-11 12:21:21 +02:00
|
|
|
end
|
|
|
|
end
|
2011-05-11 14:21:06 +02:00
|
|
|
end
|
2011-05-11 12:21:21 +02:00
|
|
|
|
2011-05-11 14:21:06 +02:00
|
|
|
resources :article_categories
|
2011-05-11 12:21:21 +02:00
|
|
|
|
2011-05-11 14:21:06 +02:00
|
|
|
########### Finance
|
2011-05-11 12:21:21 +02:00
|
|
|
|
2011-05-11 14:21:06 +02:00
|
|
|
namespace :finance do
|
2015-01-02 17:40:21 +01:00
|
|
|
root to: 'base#index'
|
2012-05-12 10:55:20 +02:00
|
|
|
|
|
|
|
resources :order, controller: 'balancing', path: 'balancing' do
|
|
|
|
member do
|
2013-03-17 15:47:50 +01:00
|
|
|
get :update_summary
|
2012-05-12 10:55:20 +02:00
|
|
|
get :edit_note
|
|
|
|
put :update_note
|
2012-07-27 18:03:46 +02:00
|
|
|
|
|
|
|
get :confirm
|
2014-02-20 15:04:53 +01:00
|
|
|
patch :close
|
|
|
|
patch :close_direct
|
2014-10-05 20:35:28 +02:00
|
|
|
|
2013-12-31 13:25:29 +01:00
|
|
|
get :new_on_order_article_create
|
2013-12-30 13:09:49 +01:00
|
|
|
get :new_on_order_article_update
|
2012-05-12 10:55:20 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-05-11 14:21:06 +02:00
|
|
|
resources :invoices
|
2011-05-11 12:21:21 +02:00
|
|
|
|
2015-01-02 17:40:21 +01:00
|
|
|
resources :ordergroups, only: [:index] do
|
|
|
|
resources :financial_transactions, as: :transactions
|
2011-05-11 12:21:21 +02:00
|
|
|
end
|
2014-05-06 19:02:01 +02:00
|
|
|
get 'transactions' => 'financial_transactions#index_collection'
|
2011-06-09 21:35:05 +02:00
|
|
|
|
2015-01-02 17:40:21 +01:00
|
|
|
get 'transactions/new_collection' => 'financial_transactions#new_collection', as: 'new_transaction_collection'
|
|
|
|
post 'transactions/create_collection' => 'financial_transactions#create_collection', as: 'create_transaction_collection'
|
2011-05-11 14:21:06 +02:00
|
|
|
end
|
2011-05-11 12:21:21 +02:00
|
|
|
|
2011-05-11 14:21:06 +02:00
|
|
|
########### Administration
|
2011-05-11 12:21:21 +02:00
|
|
|
|
2011-05-11 14:21:06 +02:00
|
|
|
namespace :admin do
|
2015-01-02 17:40:21 +01:00
|
|
|
root to: 'base#index'
|
2011-05-11 12:21:21 +02:00
|
|
|
|
2014-10-18 17:52:06 +02:00
|
|
|
resources :users do
|
2015-01-02 17:40:21 +01:00
|
|
|
post :sudo, on: :member
|
2014-10-18 17:52:06 +02:00
|
|
|
end
|
2011-05-11 12:21:21 +02:00
|
|
|
|
2011-05-11 14:21:06 +02:00
|
|
|
resources :workgroups do
|
2015-01-02 17:40:21 +01:00
|
|
|
get :memberships, on: :member
|
2011-05-11 14:21:06 +02:00
|
|
|
end
|
2011-05-11 12:21:21 +02:00
|
|
|
|
2011-05-11 14:21:06 +02:00
|
|
|
resources :ordergroups do
|
2015-01-02 17:40:21 +01:00
|
|
|
get :memberships, on: :member
|
2011-05-11 12:21:21 +02:00
|
|
|
end
|
2014-03-16 02:08:15 +01:00
|
|
|
|
2015-01-02 17:40:21 +01:00
|
|
|
resource :config, only: [:show, :update] do
|
2014-03-16 02:08:15 +01:00
|
|
|
get :list
|
|
|
|
end
|
2011-05-11 12:21:21 +02:00
|
|
|
end
|
2011-05-11 13:38:46 +02:00
|
|
|
|
2011-05-11 15:14:39 +02:00
|
|
|
############## Feedback
|
|
|
|
|
2015-01-02 17:40:21 +01:00
|
|
|
resource :feedback, only: [:new, :create], controller: 'feedback'
|
2013-06-06 04:29:53 +02:00
|
|
|
|
2011-05-11 13:38:46 +02:00
|
|
|
############## The rest
|
|
|
|
|
2015-01-02 17:40:21 +01:00
|
|
|
resources :users, only: [:index]
|
2011-05-14 19:41:46 +02:00
|
|
|
|
2011-05-11 13:38:46 +02:00
|
|
|
end # End of /:foodcoop scope
|
2009-01-06 11:49:19 +01:00
|
|
|
end
|