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
406 B
JavaScript
Raw Normal View History

2015-11-21 01:30:04 +08:00
import RestModel from "discourse/models/rest";
2016-07-01 01:55:44 +08:00
import { ajax } from "discourse/lib/ajax";
import { getProperties } from "@ember/object";
2015-11-21 01:30:04 +08:00
export default class EmailTemplate extends RestModel {
2015-11-21 01:30:04 +08:00
revert() {
return ajax(`/admin/customize/email_templates/${this.id}`, {
type: "DELETE",
2015-11-21 01:30:04 +08:00
}).then((result) =>
getProperties(result.email_template, "subject", "body", "can_revert")
);
}
}