summaryrefslogtreecommitdiff
path: root/billing/config/routes.rb
blob: 9b29aefc175fbaf894da479fdd8deac6035b3947 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Rails.application.routes.draw do

  match 'payments/new' => 'payments#new', :as => :new_payment
  match 'payments/confirm' => 'payments#confirm', :as => :confirm_payment
  resources :payments, :only => [:index]

  resources :customers, :only => [:new, :edit, :show]
  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

  resources :subscriptions, :only => [:new, :create, :index, :show, :update, :destroy]

  #match 'transactions/:product_id/new' => 'transactions#new', :as => :new_transaction
  #match 'transactions/confirm/:product_id' => 'transactions#confirm', :as => :confirm_transaction


end