2019-10-09 22:52:55 -04:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
|
|
|
|
|
|
|
const AdminPlan = Discourse.Model.extend({
|
|
|
|
destroy() {}
|
|
|
|
});
|
|
|
|
|
|
|
|
AdminPlan.reopenClass({
|
|
|
|
find() {
|
|
|
|
return ajax("/patrons/admin/plans", { method: "get" }).then(result =>
|
2019-10-13 21:36:46 -04:00
|
|
|
result.map(plan => AdminPlan.create(plan))
|
2019-10-09 22:52:55 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default AdminPlan;
|