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

30 lines
680 B
Plaintext
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 = {
customer: this.customer,
2020-09-16 10:53:50 -04:00
plan: this.plan,
2019-10-17 05:34:26 -04:00
};
return ajax("/s/subscriptions", { 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({
findAll() {
2020-09-16 10:53:50 -04:00
return ajax("/s/subscriptions", { method: "get" }).then((result) =>
result.map((subscription) => Subscription.create(subscription))
2019-10-28 20:43:32 -04:00
);
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;