A corporation manager and dashboard for EVE Online
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.
 
 
 
 
 

25 lines
724 B

  1. Rails.application.routes.draw do
  2. root 'tools#index'
  3. get '/signup' => 'users#signup'
  4. post '/signup' => 'users#signup'
  5. get '/login' => 'users#login'
  6. post '/login' => 'users#login'
  7. get '/logout' => 'users#logout'
  8. post '/logout' => 'users#logout'
  9. get '/reset' => 'users#reset'
  10. post '/reset' => 'users#reset'
  11. get '/settings' => 'users#settings'
  12. post '/settings' => 'users#settings'
  13. get '/admin' => 'admin#index'
  14. post '/admin' => 'admin#update'
  15. # routes for each tool go here, e.g.:
  16. # get 'tools#campaigns'
  17. # Example of named route that can be invoked with purchase_url(id: product.id)
  18. # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
  19. end