summaryrefslogtreecommitdiff
path: root/billing/config
diff options
context:
space:
mode:
authorjessib <jessib@leap.se>2013-03-19 15:54:24 -0700
committerAzul <azul@leap.se>2013-07-17 10:46:25 +0200
commita1837914b8f989e2c45fb7b78fc648f0d3f957d6 (patch)
tree0f43e54764acaad1ba8af6265432fe5606e6fbec /billing/config
parent925534524317d0b6e7786d5a891e2b462b897d0a (diff)
Start to adding customers to braintree vault.
Diffstat (limited to 'billing/config')
-rw-r--r--billing/config/routes.rb15
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