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

33 lines
750 B
Plaintext
Raw Normal View History

2019-10-28 20:43:32 -04:00
import computed from "ember-addons/ember-computed-decorators";
2019-10-17 05:34:26 -04:00
import { ajax } from "discourse/lib/ajax";
const Subscription = Discourse.Model.extend({
2019-10-28 20:43:32 -04:00
@computed("created")
createdFormatted(created) {
return moment.unix(created).format();
},
2019-10-17 05:34:26 -04:00
save() {
const data = {
customer: this.customer,
plan: this.plan
};
return ajax("/patrons/subscriptions", { method: "post", data });
2019-10-28 23:35:07 -04:00
},
destroy() {
return ajax(`/patrons/subscriptions/${this.id}`, { method: "delete" });
},
2019-10-17 05:34:26 -04:00
});
2019-10-28 20:43:32 -04:00
Subscription.reopenClass({
findAll() {
return ajax("/patrons/subscriptions", { method: "get" }).then(result =>
result.map(subscription => Subscription.create(subscription))
);
}
});
2019-10-17 05:34:26 -04:00
export default Subscription;