2019-12-15 18:42:55 -05:00
|
|
|
import Route from "@ember/routing/route";
|
2019-12-17 00:31:58 -05:00
|
|
|
import UserPayment from "discourse/plugins/discourse-subscriptions/discourse/models/user-payment";
|
2019-12-15 18:42:55 -05:00
|
|
|
|
|
|
|
export default Route.extend({
|
|
|
|
templateName: "user/billing/payments",
|
|
|
|
|
|
|
|
model() {
|
2019-12-17 00:31:58 -05:00
|
|
|
return UserPayment.findAll();
|
2020-09-16 10:53:50 -04:00
|
|
|
},
|
2019-12-15 18:42:55 -05:00
|
|
|
});
|