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

20 lines
524 B
Plaintext
Raw Normal View History

import { popupAjaxError } from "discourse/lib/ajax-error";
2019-09-24 01:20:07 -04:00
export default Ember.Controller.extend({
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.transitionToRoute("adminPlugins.discourse-patrons.plans");
})
.catch(popupAjaxError);
2019-09-24 01:20:07 -04:00
}
}
});