discourse-subscriptions/config/routes.rb

6 lines
181 B
Ruby
Raw Normal View History

2017-02-23 21:23:11 -05:00
DiscourseDonations::Engine.routes.draw do
2017-10-17 07:42:10 -04:00
resources :charges, only: [:create, :checkout]
2017-02-14 21:30:28 -05:00
get 'users/:username/payments' => 'payments#show'
get 'donate' => 'payments#show'
2017-01-30 21:28:41 -05:00
end