2014-03-18 15:40:13 +01:00
|
|
|
Rails.application.routes.draw do
|
2014-11-05 21:25:18 +01:00
|
|
|
get 'stats', to: 'stats#index'
|
2016-01-10 01:10:22 +01:00
|
|
|
get 'versions', to: 'versions#index'
|
2014-05-17 17:40:17 +02:00
|
|
|
|
2014-02-18 09:28:04 +01:00
|
|
|
resources :users
|
2014-05-25 23:59:03 +02:00
|
|
|
resources :events do
|
|
|
|
get :cancel, on: :member
|
2014-08-09 18:59:11 +02:00
|
|
|
post :preview, on: :collection, to: 'events#preview_create'
|
|
|
|
patch :preview, on: :member
|
2014-05-25 23:59:03 +02:00
|
|
|
end
|
2014-02-18 09:28:04 +01:00
|
|
|
resources :moderations do
|
2017-04-22 20:01:47 +02:00
|
|
|
resources :notes, only: %i[new create]
|
2014-08-09 18:59:11 +02:00
|
|
|
patch :preview, on: :member
|
2014-07-01 15:50:39 +02:00
|
|
|
get :validate, :refuse, on: :member
|
|
|
|
put :accept, on: :member
|
2014-02-18 09:28:04 +01:00
|
|
|
end
|
2017-04-22 20:01:47 +02:00
|
|
|
resources :digests, only: %i[index show]
|
|
|
|
resources :regions, only: %i[index]
|
2016-01-04 00:49:52 +01:00
|
|
|
get 'tags/orgas', to: 'tags#orgas'
|
2017-04-22 20:01:47 +02:00
|
|
|
resources :tags, only: %i[index show]
|
|
|
|
resources :maps, only: %i[index show]
|
2015-07-25 18:32:27 +02:00
|
|
|
resources :orgas do
|
|
|
|
get :cancel, :validate, :refuse, on: :member
|
|
|
|
put :accept, on: :member
|
|
|
|
end
|
2013-12-03 21:56:20 +01:00
|
|
|
|
2014-07-19 09:31:02 +02:00
|
|
|
# Manage former php pages
|
2014-08-06 14:47:47 +02:00
|
|
|
get 'showevent.php', to: redirect { |_, req| "events/#{req.params[:id]}" }
|
|
|
|
get 'listevents.php', to: redirect { |_, req| "events?#{req.query_string}" }
|
2014-09-15 11:40:11 +02:00
|
|
|
get 'editevent.php', to: redirect(lambda do |_, req|
|
|
|
|
"events/#{req.params[:id]}/edit?secret=#{req.params[:secret]}"
|
|
|
|
end)
|
2014-07-19 09:31:02 +02:00
|
|
|
# A mechanism to list "all" events
|
2014-08-06 14:47:47 +02:00
|
|
|
get '(:format)listevents.php',
|
|
|
|
to: redirect { |_, r| "events.#{r.format.to_sym}?#{r.query_string}" }
|
2014-07-19 09:34:05 +02:00
|
|
|
# Respond to rss and ical calls
|
2014-08-25 18:09:31 +02:00
|
|
|
get 'event.php',
|
|
|
|
to: redirect { |_, r| "events?#{r.query_string}" }
|
2014-08-06 14:47:47 +02:00
|
|
|
get '(:format)event.php',
|
|
|
|
to: redirect { |_, r| "events.#{r.format.to_sym}?#{r.query_string}" }
|
2014-07-19 09:39:10 +02:00
|
|
|
# Respond to rss and ical calls
|
2014-08-06 14:47:47 +02:00
|
|
|
get '(:format).php',
|
|
|
|
to: redirect { |_, r| "events.#{r.format.to_sym}?#{r.query_string}" }
|
2014-01-01 22:38:56 +01:00
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
devise_for :users,
|
|
|
|
path: '', path_names: { sign_in: 'login', sign_out: 'logout' }
|
2013-11-14 17:07:48 +01:00
|
|
|
devise_for :admin_users, ActiveAdmin::Devise.config
|
|
|
|
ActiveAdmin.routes(self)
|
2013-11-14 10:54:09 +01:00
|
|
|
|
2013-12-28 23:45:13 +01:00
|
|
|
root to: 'events#index'
|
2013-11-24 16:11:44 +01:00
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
# The priority is based upon order of creation:
|
|
|
|
# first created -> highest priority.
|
2013-11-13 23:09:38 +01:00
|
|
|
# See how all your routes lay out with "rake routes".
|
|
|
|
|
|
|
|
# You can have the root of your site routed with "root"
|
|
|
|
# root 'welcome#index'
|
|
|
|
|
|
|
|
# Example of regular route:
|
|
|
|
# get 'products/:id' => 'catalog#view'
|
|
|
|
|
|
|
|
# Example of named route that can be invoked with purchase_url(id: product.id)
|
|
|
|
# get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
|
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
# Example resource route (maps HTTP verbs to controller actions
|
|
|
|
# automatically):
|
2013-11-13 23:09:38 +01:00
|
|
|
# resources :products
|
|
|
|
|
|
|
|
# Example resource route with options:
|
|
|
|
# resources :products do
|
|
|
|
# member do
|
|
|
|
# get 'short'
|
|
|
|
# post 'toggle'
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# collection do
|
|
|
|
# get 'sold'
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
|
|
|
|
# Example resource route with sub-resources:
|
|
|
|
# resources :products do
|
|
|
|
# resources :comments, :sales
|
|
|
|
# resource :seller
|
|
|
|
# end
|
|
|
|
|
|
|
|
# Example resource route with more complex sub-resources:
|
|
|
|
# resources :products do
|
|
|
|
# resources :comments
|
|
|
|
# resources :sales do
|
|
|
|
# get 'recent', on: :collection
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
|
|
|
|
# Example resource route with concerns:
|
|
|
|
# concern :toggleable do
|
|
|
|
# post 'toggle'
|
|
|
|
# end
|
|
|
|
# resources :posts, concerns: :toggleable
|
|
|
|
# resources :photos, concerns: :toggleable
|
|
|
|
|
|
|
|
# Example resource route within a namespace:
|
|
|
|
# namespace :admin do
|
|
|
|
# # Directs /admin/products/* to Admin::ProductsController
|
|
|
|
# # (app/controllers/admin/products_controller.rb)
|
|
|
|
# resources :products
|
|
|
|
# end
|
|
|
|
end
|