diff options
author | jessib <jessib@leap.se> | 2013-03-19 15:54:24 -0700 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-07-17 10:46:25 +0200 |
commit | a1837914b8f989e2c45fb7b78fc648f0d3f957d6 (patch) | |
tree | 0f43e54764acaad1ba8af6265432fe5606e6fbec /billing/config/routes.rb | |
parent | 925534524317d0b6e7786d5a891e2b462b897d0a (diff) |
Start to adding customers to braintree vault.
Diffstat (limited to 'billing/config/routes.rb')
-rw-r--r-- | billing/config/routes.rb | 15 |
1 files changed, 15 insertions, 0 deletions
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 |