From 73a6fac86076910820953752cd47e44119e9b25f Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Mon, 19 Mar 2018 08:50:21 -0400 Subject: [PATCH] Create a route --- config/routes.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/config/routes.rb b/config/routes.rb index 787824f..e1ec75e 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,3 +1,4 @@ Rails.application.routes.draw do # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html + get '/people', to: 'people#index' end