2014-11-06 14:46:59 +01:00
|
|
|
Rails.application.routes.draw do
|
2015-03-20 04:54:44 +01:00
|
|
|
devise_for :users, controllers: {
|
|
|
|
omniauth_callbacks: "callbacks",
|
|
|
|
sessions: "sessions"
|
|
|
|
}
|
2014-12-09 17:17:11 +01:00
|
|
|
|
2015-01-06 20:18:01 +01:00
|
|
|
devise_scope :user do
|
|
|
|
unauthenticated :user do
|
2015-03-20 04:54:44 +01:00
|
|
|
root to: 'sessions#new'
|
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
|
2015-03-21 17:58:49 +01:00
|
|
|
get 'sign_out', :to => 'devise/sessions#destroy', :as => :destroy_user_session
|
2015-01-06 20:18:01 +01:00
|
|
|
end
|
|
|
|
|
2014-12-09 22:32:54 +01:00
|
|
|
resources :users do
|
2015-02-04 19:03:50 +01:00
|
|
|
resources :orders
|
2015-03-19 14:59:37 +01:00
|
|
|
get 'quickpay' => 'orders#quickpay'
|
|
|
|
get 'dagschotel/edit' => 'users#edit_dagschotel', as: 'edit_dagschotel'
|
|
|
|
get 'dagschotel/:product_id' => 'users#update_dagschotel', as: 'dagschotel'
|
2014-11-25 15:27:12 +01:00
|
|
|
end
|
2014-11-06 18:30:53 +01:00
|
|
|
|
2015-03-20 03:57:00 +01:00
|
|
|
resources :user_avatar
|
|
|
|
|
2015-02-08 10:11:23 +01:00
|
|
|
resources :products do
|
|
|
|
collection do
|
|
|
|
get 'stock' => 'products#stock', as: 'stock'
|
|
|
|
post 'stock' => 'products#update_stock', as: 'update_stock'
|
|
|
|
end
|
|
|
|
end
|
2015-02-09 17:06:24 +01:00
|
|
|
|
2014-12-10 16:17:55 +01:00
|
|
|
get 'admins' => 'admins#schulden', as: "admins_schulden"
|
2015-01-06 20:33:11 +01:00
|
|
|
get 'overview' => 'orders#overview', as: "orders"
|
2014-11-06 14:46:59 +01:00
|
|
|
end
|