summaryrefslogtreecommitdiff
path: root/billing/config/routes.rb
diff options
context:
space:
mode:
authorjessib <jessib@leap.se>2013-04-30 13:54:46 -0700
committerAzul <azul@leap.se>2013-07-17 10:47:13 +0200
commit5442da999c8398b1e84162996f1e944c6496b095 (patch)
treece4bca037d95d98e8cdbb6aa1e867159f6eab0fa /billing/config/routes.rb
parent1e557522fafc26829b8e9a873da28b7082d4df42 (diff)
Changing customers route to be plural.
Diffstat (limited to 'billing/config/routes.rb')
-rw-r--r--billing/config/routes.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/billing/config/routes.rb b/billing/config/routes.rb
index 4f31fb7..1c7bb30 100644
--- a/billing/config/routes.rb
+++ b/billing/config/routes.rb
@@ -3,7 +3,7 @@ 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, :show]
+ resources :customers, :only => [:new, :edit, :show]
resources :credit_card_info, :only => [:edit]
match 'customer/confirm' => 'customer#confirm', :as => :confirm_customer