discourse/app/assets/javascripts/admin/addon/models/email-template.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
374 B
JavaScript
Raw Normal View History

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() {
return ajax(`/admin/customize/email_templates/${this.id}`, {
type: "DELETE",
2015-11-20 12:30:04 -05:00
}).then((result) =>
getProperties(result.email_template, "subject", "body", "can_revert")
);
},
});