37 lines
965 B
JavaScript
37 lines
965 B
JavaScript
import Route from "@ember/routing/route";
|
|
import AdminProduct from "discourse/plugins/discourse-subscriptions/discourse/models/admin-product";
|
|
import I18n from "I18n";
|
|
import { action } from "@ember/object";
|
|
import { inject as service } from "@ember/service";
|
|
|
|
export default Route.extend({
|
|
dialog: service(),
|
|
|
|
model() {
|
|
return AdminProduct.findAll();
|
|
},
|
|
|
|
@action
|
|
destroyProduct(product) {
|
|
this.dialog.yesNoConfirm({
|
|
message: I18n.t(
|
|
"discourse_subscriptions.admin.products.operations.destroy.confirm"
|
|
),
|
|
didConfirm: () => {
|
|
return product
|
|
.destroy()
|
|
.then(() => {
|
|
this.controllerFor(
|
|
"adminPluginsDiscourseSubscriptionsProductsIndex"
|
|
)
|
|
.get("model")
|
|
.removeObject(product);
|
|
})
|
|
.catch((data) =>
|
|
this.dialog.alert(data.jqXHR.responseJSON.errors.join("\n"))
|
|
);
|
|
},
|
|
});
|
|
},
|
|
});
|