discourse-subscriptions/assets/javascripts/discourse/controllers/admin-plugins-discourse-sub...

26 lines
670 B
JavaScript
Raw Normal View History

import Controller from "@ember/controller";
import { popupAjaxError } from "discourse/lib/ajax-error";
import { inject as service } from "@ember/service";
export default Controller.extend({
router: service(),
2019-09-24 01:20:07 -04:00
actions: {
createPlan() {
2019-10-24 23:00:59 -04:00
if (this.get("model.plan.product_id") === undefined) {
2019-10-17 05:34:26 -04:00
const productID = this.get("model.products.firstObject.id");
this.set("model.plan.product_id", productID);
2019-10-16 21:07:06 -04:00
}
2019-10-15 23:15:01 -04:00
this.get("model.plan")
2019-09-24 06:44:51 -04:00
.save()
.then(() => {
this.router.transitionTo(
"adminPlugins.discourse-subscriptions.plans"
);
})
.catch(popupAjaxError);
2020-09-16 10:53:50 -04:00
},
},
2019-09-24 01:20:07 -04:00
});