From a1837914b8f989e2c45fb7b78fc648f0d3f957d6 Mon Sep 17 00:00:00 2001 From: jessib Date: Tue, 19 Mar 2013 15:54:24 -0700 Subject: Start to adding customers to braintree vault. --- billing/config/routes.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 billing/config/routes.rb (limited to 'billing/config/routes.rb') diff --git a/billing/config/routes.rb b/billing/config/routes.rb new file mode 100644 index 0000000..c103e2b --- /dev/null +++ b/billing/config/routes.rb @@ -0,0 +1,15 @@ +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 :credit_card_info, :only => [:edit] + + match 'customer/confirm' => 'customer#confirm', :as => :confirm_customer + match 'credit_card_info/confirm' => 'credit_card_info#confirm', :as => :confirm_credit_card_info + #match 'transactions/:product_id/new' => 'transactions#new', :as => :new_transaction + #match 'transactions/confirm/:product_id' => 'transactions#confirm', :as => :confirm_transaction + + +end -- cgit v1.2.3