A corporation manager and dashboard for EVE Online
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

13 行
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