Files
discourse-subscriptions/assets/javascripts/discourse/models/customer.js.es6
T

15 lines
280 B
JavaScript
Raw Normal View History

2019-12-12 12:59:26 +11:00
import { ajax } from "discourse/lib/ajax";
import EmberObject from "@ember/object";
2019-12-12 12:59:26 +11:00
const Customer = EmberObject.extend({
2019-12-12 12:59:26 +11:00
save() {
const data = {
source: this.source
};
return ajax("/s/customers", { method: "post", data });
}
});
export default Customer;