A corporation manager and dashboard for EVE Online
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

routes.rb 388 B

il y a 9 ans
il y a 9 ans
il y a 9 ans
il y a 9 ans
123456789101112131415
  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 regular route:
  7. # get 'products/:id' => 'catalog#view'
  8. # Example of named route that can be invoked with purchase_url(id: product.id)
  9. # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
  10. end