initital template
This commit is contained in:
parent
aab03c102f
commit
96ca372b86
|
@ -4,3 +4,7 @@ export default {
|
||||||
this.route('payments');
|
this.route('payments');
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export default function() {
|
||||||
|
this.route('stripe');
|
||||||
|
};
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
hello world
|
|
@ -1,4 +1,5 @@
|
||||||
DiscourseDonations::Engine.routes.draw do
|
DiscourseDonations::Engine.routes.draw do
|
||||||
resources :charges, only: [:create]
|
resources :charges, only: [:create]
|
||||||
get 'users/:username/payments' => 'payments#show'
|
get 'users/:username/payments' => 'payments#show'
|
||||||
|
get 'stripe' => 'payments#show'
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue