From bfaf08373a9b2261830c4797dd4f8d0411951960 Mon Sep 17 00:00:00 2001 From: Jared Cosulich Date: Fri, 10 Mar 2017 13:58:21 -0500 Subject: [PATCH] fixing routes --- config/routes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index 510ae086..467ed4d0 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -21,7 +21,7 @@ Rails.application.routes.draw do # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html get '/admin', to: 'admin#index', as: 'admin' - post '/twilio', to: 'attempt#twilio' + post '/twilio', to: 'attempts#twilio' root to: "welcome#index" end