|
AvalancheGame::Application.routes.draw do
get "start/about"
get "agent/current_missions"
get "accept_mission/:id" => "agent#accept_mission", :as => :mission_agent_accept
get "denie_mission/:id" => "agent#denie_mission", :as => :mission_agent_denie
get "agent/:id" => "agent#agent_profile", :as => :agent_profile
get "agent_list" => "agent#agent_list", :as => :agent_list
get "missions/:id/launch" => "missions#launch", :as => :mission_launch
get "mission_control/:id" => "missions#mission_control", :as => :mission_control
get "mission_list" => "missions#list", :as => :mission_list
patch "mission_agent_step" => "missions#validate_agent_step", :as => :mission_agent_step
get "mission_agent_step_validate_check/:id" => "missions#mission_agent_step_validate_check", :as => :step_validate_check
get "mission_agent_step_invalidate_check/:id" => "missions#mission_agent_step_invalidate_check", :as => :step_invalidate_check
resources :missions
devise_for :users, :skip => [:sessions, :passwords, :confirmations, :registrations]
as :user do
get 'login' => 'devise/sessions#new', :as => :new_user_session
post 'login' => 'devise/sessions#create', :as => :user_session
delete 'logout' => 'devise/sessions#destroy', :as => :destroy_user_session
get 'signup' => 'devise/registrations#new', :as => :new_user_registration
post 'signup' => 'users/registrations#create', :as => :user_registration
put 'signup' => 'devise/registrations#update', :as => :user_registration_update
scope '/account' do
# password reset
get '/reset-password' => 'devise/passwords#new', as: 'new_user_password'
put '/reset-password' => 'devise/passwords#update', as: 'user_password'
post '/reset-password' => 'devise/passwords#create'
get '/reset-password/change' => 'devise/passwords#edit', as: 'edit_user_password'
# confirmation
get '/confirm' => 'devise/confirmations#show', as: 'user_confirmation'
post '/confirm' => 'devise/confirmations#create'
get '/confirm/resend' => 'devise/confirmations#new', as: 'new_user_confirmation'
# settings & cancellation
get '/cancel' => 'devise/registrations#cancel', as: 'cancel_user_registration'
get '/settings' => 'devise/registrations#edit', as: 'edit_user_registration'
put '/settings' => 'devise/registrations#update'
# account deletion
delete '' => 'devise/registrations#destroy'
end
end
# 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 'start#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
|