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.
 
 
 
 
 

13 lines
314 B

  1. Rails.application.routes.draw do
  2. root 'tools#index'
  3. get '/signup' => 'users#create'
  4. get '/login' => 'users#login'
  5. get '/admin' => 'admin#index'
  6. # Example of named route that can be invoked with purchase_url(id: product.id)
  7. # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
  8. end