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

30 lines
673 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,
plan: this.plan
};
return ajax("/s/subscriptions", { method: "post", data });
2019-10-30 22:31:24 -04:00
}
2019-10-17 05:34:26 -04:00
});
2019-10-28 20:43:32 -04:00
Subscription.reopenClass({
findAll() {
return ajax("/s/subscriptions", { method: "get" }).then(result =>
2019-11-04 00:37:21 -05:00
result.map(subscription => Subscription.create(subscription))
2019-10-28 20:43:32 -04:00
);
}
});
2019-10-17 05:34:26 -04:00
export default Subscription;