From f07c90cf9022a5f57d38cc964553ad51c29848ae Mon Sep 17 00:00:00 2001 From: Rick Barrette Date: Tue, 26 Apr 2016 14:01:20 -0400 Subject: [PATCH] Update routes.rb --- config/routes.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index b88abb0..f796e50 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -18,4 +18,6 @@ get 'qbo/sync', :to => 'qbo#sync' get 'qbo/estimate/:id', :to => 'estimate#show', as: :estimate get 'qbo/invoice/:id', :to => 'invoice#show', as: :invoice resources :vehicles -resources :customers, concerns: :vehicles +resources :customers do + resources: :vehicles +end