31 lines
838 B
JavaScript
31 lines
838 B
JavaScript
import AdminSubscription from "discourse/plugins/discourse-subscriptions/discourse/models/admin-subscription";
|
|
import Controller from "@ember/controller";
|
|
import showModal from "discourse/lib/show-modal";
|
|
|
|
export default Controller.extend({
|
|
loading: false,
|
|
|
|
actions: {
|
|
showCancelModal(subscription) {
|
|
showModal("admin-cancel-subscription", {
|
|
model: subscription,
|
|
});
|
|
},
|
|
|
|
loadMore() {
|
|
if (!this.loading && this.model.has_more) {
|
|
this.set("loading", true);
|
|
|
|
return AdminSubscription.loadMore(this.model.last_record).then(
|
|
(result) => {
|
|
const updated = this.model.data.concat(result.data);
|
|
this.set("model", result);
|
|
this.set("model.data", updated);
|
|
this.set("loading", false);
|
|
}
|
|
);
|
|
}
|
|
},
|
|
},
|
|
});
|