2015-11-20 12:30:04 -05:00
|
|
|
import RestModel from "discourse/models/rest";
|
2016-06-30 13:55:44 -04:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2015-11-20 12:30:04 -05:00
|
|
|
const { getProperties } = Ember;
|
|
|
|
|
|
|
|
export default RestModel.extend({
|
|
|
|
revert() {
|
2019-05-27 04:15:39 -04:00
|
|
|
return ajax(`/admin/customize/email_templates/${this.id}`, {
|
2020-03-26 16:00:10 -04:00
|
|
|
type: "DELETE",
|
2015-11-20 12:30:04 -05:00
|
|
|
}).then((result) =>
|
|
|
|
getProperties(result.email_template, "subject", "body", "can_revert")
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|