From 9d83175bd70041b01174ad362986535348146005 Mon Sep 17 00:00:00 2001 From: Rick Barrette Date: Thu, 21 Apr 2016 09:35:27 -0400 Subject: [PATCH] Update routes.rb Added Vehicle Index --- config/routes.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index 4a6af82..09e1d57 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -16,4 +16,5 @@ get 'qbo/authenticate', :to => 'qbo#authenticate' get 'qbo/oauth_callback', :to => 'qbo#oauth_callback' get 'qbo/sync', :to => 'qbo#sync' get 'qbo/estimate/:id', :to => 'estimate#show', as: :estimate -get 'qbo/invoice/:id', :to => 'invoice#show', as: :invoice \ No newline at end of file +get 'qbo/invoice/:id', :to => 'invoice#show', as: :invoice +get 'vehicle', :to 'vehicle#index'