Files
flights/config/routes.rb

7 lines
140 B
Ruby

Rails.application.routes.draw do
root "flights#index"
get "/flights", to: "flights#index"
get "/flights/:id", to: "flights#show"
end