diff options
Diffstat (limited to 'billing/config/routes.rb')
-rw-r--r-- | billing/config/routes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/billing/config/routes.rb b/billing/config/routes.rb index b5ccf6e..4f31fb7 100644 --- a/billing/config/routes.rb +++ b/billing/config/routes.rb @@ -3,7 +3,7 @@ Rails.application.routes.draw do match 'payments/new' => 'payments#new', :as => :new_payment match 'payments/confirm' => 'payments#confirm', :as => :confirm_payment - resources :customer, :only => [:new, :edit] + resources :customer, :only => [:new, :edit, :show] resources :credit_card_info, :only => [:edit] match 'customer/confirm' => 'customer#confirm', :as => :confirm_customer |