pinrails/config/routes.rb

10 lines
174 B
Ruby
Raw Normal View History

2022-01-15 17:10:26 +00:00
# frozen_string_literal: true
Rails.application.routes.draw do
2022-01-15 19:08:29 +00:00
get 'randomize', to: 'pages#randomize'
2022-01-15 17:10:26 +00:00
resources :machines
resources :players
2022-01-15 19:08:29 +00:00
root 'pages#index'
2022-01-15 17:10:26 +00:00
end