discourse-subscriptions/assets/javascripts/discourse/models/subscription.js

31 lines
686 B
JavaScript
Raw Normal View History

import discourseComputed from "discourse-common/utils/decorators";
2019-10-17 05:34:26 -04:00
import { ajax } from "discourse/lib/ajax";
import EmberObject from "@ember/object";
2019-10-17 05:34:26 -04:00
const Subscription = EmberObject.extend({
@discourseComputed("status")
2019-10-30 19:01:41 -04:00
canceled(status) {
2019-10-30 22:31:24 -04:00
return status === "canceled";
2019-10-30 19:01:41 -04:00
},
2019-10-17 05:34:26 -04:00
save() {
const data = {
source: this.source,
2020-09-16 10:53:50 -04:00
plan: this.plan,
promo: this.promo,
cardholder_name: this.cardholderName,
cardholder_address: this.cardholderAddress,
2019-10-17 05:34:26 -04:00
};
return ajax("/s/create", { method: "post", data });
2020-09-16 10:53:50 -04:00
},
2019-10-17 05:34:26 -04:00
});
2019-10-28 20:43:32 -04:00
Subscription.reopenClass({
show(id) {
return ajax(`/s/${id}`, { method: "get" });
2020-09-16 10:53:50 -04:00
},
2019-10-28 20:43:32 -04:00
});
2019-10-17 05:34:26 -04:00
export default Subscription;