mirror of
https://github.com/apigy/selfstarter.git
synced 2026-01-09 14:27:55 -05:00
10 lines
403 B
Ruby
10 lines
403 B
Ruby
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'
|
|
end
|