initital template

This commit is contained in:
Rimian Perkins 2017-03-16 11:32:22 +11:00
parent aab03c102f
commit 96ca372b86
3 changed files with 6 additions and 0 deletions

View File

@ -4,3 +4,7 @@ export default {
this.route('payments');
}
};
export default function() {
this.route('stripe');
};

View File

@ -0,0 +1 @@
hello world

View File

@ -1,4 +1,5 @@
DiscourseDonations::Engine.routes.draw do
resources :charges, only: [:create]
get 'users/:username/payments' => 'payments#show'
get 'stripe' => 'payments#show'
end