Skip to content

Instantly share code, notes, and snippets.

@dcaliri
Created February 14, 2011 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcaliri/825844 to your computer and use it in GitHub Desktop.
Save dcaliri/825844 to your computer and use it in GitHub Desktop.
reseller_login /reseller_login {:action=>"login", :controller=>"resellers"}
reseller_join /reseller_join {:action=>"new", :controller=>"resellers"}
reseller_welcome /reseller_welcome {:action=>"welcome", :controller=>"resellers"}
reseller_thanks /reseller_thanks {:action=>"thanks", :controller=>"resellers"}
reseller_activate /reseller_activate/:activation_code {:action=>"activate", :controller=>"resellers"}
resellers POST /resellers(.:format) {:action=>"create", :controller=>"resellers"}
new_reseller GET /resellers/new(.:format) {:action=>"new", :controller=>"resellers"}
manager_reseller_promotional_codes GET /manager/resellers/:reseller_id/promotional_codes(.:format) {:action=>"index", :controller=>"manager/promotional_codes"}
POST /manager/resellers/:reseller_id/promotional_codes(.:format) {:action=>"create", :controller=>"manager/promotional_codes"}
new_manager_reseller_promotional_code GET /manager/resellers/:reseller_id/promotional_codes/new(.:format) {:action=>"new", :controller=>"manager/promotional_codes"}
edit_manager_reseller_promotional_code GET /manager/resellers/:reseller_id/promotional_codes/:id/edit(.:format) {:action=>"edit", :controller=>"manager/promotional_codes"}
manager_reseller_promotional_code GET /manager/resellers/:reseller_id/promotional_codes/:id(.:format) {:action=>"show", :controller=>"manager/promotional_codes"}
PUT /manager/resellers/:reseller_id/promotional_codes/:id(.:format) {:action=>"update", :controller=>"manager/promotional_codes"}
DELETE /manager/resellers/:reseller_id/promotional_codes/:id(.:format) {:action=>"destroy", :controller=>"manager/promotional_codes"}
manager_resellers GET /manager/resellers(.:format) {:action=>"index", :controller=>"manager/resellers"}
manager_reseller GET /manager/resellers/:id(.:format) {:action=>"show", :controller=>"manager/resellers"}
reseller_promotional_codes GET /reseller/promotional_codes(.:format) {:action=>"index", :controller=>"reseller/promotional_codes"}
send_code_reseller_promotional_code PUT /reseller/promotional_codes/:id/send_code(.:format) {:action=>"send_code", :controller=>"reseller/promotional_codes"}
reseller_movements GET /reseller/movements(.:format) {:action=>"index", :controller=>"reseller/movements"}
reseller_bank_accounts GET /reseller/bank_accounts(.:format) {:action=>"index", :controller=>"reseller/bank_accounts"}
POST /reseller/bank_accounts(.:format) {:action=>"create", :controller=>"reseller/bank_accounts"}
new_reseller_bank_account GET /reseller/bank_accounts/new(.:format) {:action=>"new", :controller=>"reseller/bank_accounts"}
edit_reseller_bank_account GET /reseller/bank_accounts/:id/edit(.:format) {:action=>"edit", :controller=>"reseller/bank_accounts"}
reseller_bank_account GET /reseller/bank_accounts/:id(.:format) {:action=>"show", :controller=>"reseller/bank_accounts"}
PUT /reseller/bank_accounts/:id(.:format) {:action=>"update", :controller=>"reseller/bank_accounts"}
DELETE /reseller/bank_accounts/:id(.:format) {:action=>"destroy", :controller=>"reseller/bank_accounts"}
new_reseller_billing_info GET /reseller/billing_info/new(.:format) {:action=>"new", :controller=>"reseller/billing_infos"}
edit_reseller_billing_info GET /reseller/billing_info/edit(.:format) {:action=>"edit", :controller=>"reseller/billing_infos"}
reseller_billing_info GET /reseller/billing_info(.:format) {:action=>"show", :controller=>"reseller/billing_infos"}
PUT /reseller/billing_info(.:format) {:action=>"update", :controller=>"reseller/billing_infos"}
POST /reseller/billing_info(.:format) {:action=>"create", :controller=>"reseller/billing_infos"}
reseller_transfers POST /reseller/transfers(.:format) {:action=>"create", :controller=>"reseller/transfers"}
new_reseller_transfer GET /reseller/transfers/new(.:format) {:action=>"new", :controller=>"reseller/transfers"}
confirm_reseller_transfer PUT /reseller/transfers/:id/confirm(.:format) {:action=>"confirm", :controller=>"reseller/transfers"}
reseller_transfer GET /reseller/transfers/:id(.:format) {:action=>"show", :controller=>"reseller/transfers"}
DELETE /reseller/transfers/:id(.:format) {:action=>"destroy", :controller=>"reseller/transfers"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment