2014-03-18 15:40:13 +01:00
|
|
|
Rails.application.routes.draw do
|
2014-04-28 00:33:21 +02:00
|
|
|
get 'maps/index'
|
|
|
|
|
|
|
|
get 'map/index'
|
|
|
|
|
2014-02-18 09:28:04 +01:00
|
|
|
resources :users
|
|
|
|
resources :events
|
|
|
|
resources :moderations do
|
|
|
|
resources :notes, only: [:new, :create]
|
|
|
|
end
|
2014-01-04 11:34:50 +01:00
|
|
|
resources :regions, only: [ :index ] do
|
|
|
|
get 'icallist', on: :collection
|
2014-01-05 18:48:32 +01:00
|
|
|
get 'stats', on: :collection
|
2014-01-04 11:34:50 +01:00
|
|
|
end
|
2014-01-05 22:10:11 +01:00
|
|
|
resources :tags, only: [ :index, :show ]
|
2014-04-28 00:33:21 +02:00
|
|
|
resources :maps, only: [:index]
|
2013-12-03 21:56:20 +01:00
|
|
|
|
2014-01-04 11:34:50 +01:00
|
|
|
get 'ical.php' => 'events#index', format: :ics
|
2014-01-01 22:38:56 +01:00
|
|
|
get ':format.php' => 'events#index'
|
|
|
|
|
2014-01-10 16:35:58 +01: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
|
|
|
|
2013-11-13 23:09:38 +01:00
|
|
|
# The priority is based upon order of creation: first created -> highest priority.
|
|
|
|
# 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
|
|
|
|
|
|
|
|
# Example resource route (maps HTTP verbs to controller actions automatically):
|
|
|
|
# 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
|