Fixed up formatting.

This commit is contained in:
Finbarr Taylor
2012-10-11 17:58:41 -07:00
parent 59116075ec
commit 13cee4f791
21 changed files with 258 additions and 283 deletions

View File

@@ -1,11 +1,9 @@
Selfstarter::Application.routes.draw do
root :to => "preorder#index"
match '/preorder' => 'preorder#index'
get "preorder/checkout"
match '/preorder/share/:uuid' => 'preorder#share', :via => :get
match '/preorder/ipn' => 'preorder#ipn', :via => :post
match '/preorder/prefill' => 'preorder#prefill'
match '/preorder/postfill' => 'preorder#postfill'
root :to => 'preorder#index'
match '/preorder' => 'preorder#index'
get 'preorder/checkout'
match '/preorder/share/:uuid' => 'preorder#share', :via => :get
match '/preorder/ipn' => 'preorder#ipn', :via => :post
match '/preorder/prefill' => 'preorder#prefill'
match '/preorder/postfill' => 'preorder#postfill'
end