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
|
|
|
|
2024-11-29 10:42:50 -05:00
|
|
|
export default class UserBillingPaymentsRoute extends Route {
|
|
|
|
templateName = "user/billing/payments";
|
2019-12-15 18:42:55 -05:00
|
|
|
|
|
|
|
model() {
|
2019-12-17 00:31:58 -05:00
|
|
|
return UserPayment.findAll();
|
2024-11-29 10:42:50 -05:00
|
|
|
}
|
|
|
|
}
|