Bike!Bike! Website!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
3.1 KiB

BikeBike::Application.routes.draw do
11 years ago
10 years ago
#resources :events
#resources :event_types
#resources :workshop_requested_resources
#resources :workshop_facilitators
#resources :registration_form_fields
resources :conference_types, :param => :type, :path => '/conferences', :as => :conference, :except => :index do
10 years ago
resources :conferences, :param => :slug, :path => '/' do
10 years ago
#get :hosts
#get :registration
#get :registration
#resources :workshops, :param => 'slug'
#get :register, :param => 'step'
#post 'register/next' => 'conferences#register_submit'
# get 'register/workshop-test/' => 'conferences#workshop_test'
match 'register(/:step)' => 'conferences#register', via: [:get, :post]
get 'register/confirm/:confirmation_token' => 'conferences#register_confirm'
match 'register/pay-registration/:confirmation_token' => 'conferences#register_pay_registration', via: [:get, :post]
get 'register/paypal-confirm/:confirmation_token' => 'conferences#register_paypal_confirm'
get 'register/paypal-cancel/:confirmation_token' => 'conferences#register_paypal_cancel'
get 'registrations' => 'conferences#registrations'
10 years ago
#patch 'register/step/:step' => 'conferences#register_step'
10 years ago
#resources :registrations, :path => 'registration' do
# get :form, on: :collection
#end
10 years ago
#get 'registration/form' => 'conferences#registration', :sub_action => "form", as: 'registration_form'
#get 'registration/form/register' => 'conferences#registration', :sub_action => "register", as: 'registration_register'
#get 'registration/form/stats' => 'conferences#registration', :sub_action => "stats", as: 'registration_stats'
#post :nonhosts
#post 'registration/form/add-field' => 'conferences#add_field', as: 'registration_add_field'
#post 'registration/form/remove-field' => 'conferences#remove_field', as: 'registration_remove_field'
#post 'registration/form/reorder' => 'conferences#reorder', as: 'registration_reorder'
#post 'registration/form/reorder' => 'conferences#reorder', as: 'registration_reorder'
10 years ago
end
end
10 years ago
resources :conferences, :only => :index
resources :organizations, :param => 'slug' do
get :members
get :identity
get :json
post :nonmembers
end
resources :users
resources :user_sessions
10 years ago
#resources :workshop_streams
#resources :workshop_resources
#resources :workshop_presentation_styles
10 years ago
#resources :locations
post '/translate/' => 'pages#translate'
post '/location/territories/' => 'pages#location_territories'
10 years ago
get '/translations/:lang', to: 'pages#translations'
get '/translations', to: 'pages#translation_list'
get 'login' => 'user_sessions#new', :as => :login
post 'logout' => 'user_sessions#destroy', :as => :logout
get 'register' => 'users#new', :as => 'register'
10 years ago
post "oauth/callback" => "oauths#callback"
get "oauth/callback" => "oauths#callback"
get "oauth/:provider" => "oauths#oauth", :as => :auth_at_provider
get 'robots.txt' => 'pages#robots'
get 'resources' => 'pages#resources'
root 'pages#home'
11 years ago
end