1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
Rails.application.routes.draw do
scope "(:locale)", :locale => CommonLanguages.match_available do
get 'payments/new' => 'payments#new', :as => :new_payment
post 'payments/confirm' => 'payments#confirm', :as => :confirm_payment
# match 'payments/new' => 'payments#new', :as => :new_payment
# match 'payments/confirm' => 'payments#confirm', :as => :confirm_payment
#resources :users do
# resources :payments, :only => [:new, :confirm]
# resources :subscriptions, :only => [:index, :destroy]
#end
resources :subscriptions, :only => [:index, :show] do
member do
post 'subscribe'
delete 'unsubscribe'
end
end
resources :customer, :only => [:new, :edit]
match 'customer/confirm/' => 'customer#confirm', :as => :confirm_customer
match 'customer/show/:id' => 'customer#show', :as => :show_customer
match 'billing_admin' => 'billing_admin#show', :as => :billing_admin
end
end
|