2014-11-06 14:46:59 +01:00
|
|
|
Rails.application.routes.draw do
|
2015-09-22 07:13:35 +02:00
|
|
|
devise_for :users, controllers: { omniauth_callbacks: "callbacks" }
|
2014-12-09 17:17:11 +01:00
|
|
|
|
2015-01-06 20:18:01 +01:00
|
|
|
devise_scope :user do
|
2015-09-22 07:13:35 +02:00
|
|
|
get 'sign_out', to: 'devise/sessions#destroy', as: :destroy_user_session
|
|
|
|
post 'sign_in', to: 'welcome#token_sign_in'
|
2015-01-06 20:18:01 +01:00
|
|
|
unauthenticated :user do
|
2015-03-25 17:49:37 +01:00
|
|
|
root to: 'welcome#index'
|
2015-01-09 12:31:14 +01:00
|
|
|
end
|
2015-03-03 20:11:50 +01:00
|
|
|
|
|
|
|
authenticated :user, ->(u) { u.koelkast? } do
|
|
|
|
root to: 'orders#overview', as: :koelkast_root
|
|
|
|
end
|
|
|
|
|
|
|
|
authenticated :user, ->(u) { !u.koelkast? } do
|
|
|
|
root to: 'users#show', as: :user_root
|
2015-01-06 20:18:01 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-09-18 21:05:32 +02:00
|
|
|
resources :users, only: [:show, :edit, :update] do
|
2015-09-14 20:26:16 +02:00
|
|
|
resources :orders, only: [:new, :create, :destroy]
|
2015-09-07 21:15:16 +02:00
|
|
|
member do
|
2015-09-22 20:06:50 +02:00
|
|
|
get 'quickpay' => 'users#quickpay'
|
2015-09-07 21:15:16 +02:00
|
|
|
get 'dagschotel/edit' => 'users#edit_dagschotel', as: 'edit_dagschotel'
|
|
|
|
end
|
2014-11-25 15:27:12 +01:00
|
|
|
end
|
2014-11-06 18:30:53 +01:00
|
|
|
|
2015-09-20 21:21:18 +02:00
|
|
|
resources :products, only: [:new, :create, :index, :edit, :update] do
|
|
|
|
collection do
|
|
|
|
post 'barcode' => 'products#from_barcode', as: :from_barcode
|
|
|
|
end
|
|
|
|
end
|
2015-09-14 20:26:16 +02:00
|
|
|
resources :stocks, only: [:new, :create]
|
2015-02-09 17:06:24 +01:00
|
|
|
|
2015-01-06 20:33:11 +01:00
|
|
|
get 'overview' => 'orders#overview', as: "orders"
|
2014-11-06 14:46:59 +01:00
|
|
|
end
|