mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-09 13:04:49 +00:00
11 lines
269 B
JavaScript
11 lines
269 B
JavaScript
import Route from "@ember/routing/route";
|
|
import UserPayment from "discourse/plugins/discourse-subscriptions/discourse/models/user-payment";
|
|
|
|
export default Route.extend({
|
|
templateName: "user/billing/payments",
|
|
|
|
model() {
|
|
return UserPayment.findAll();
|
|
},
|
|
});
|