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";
|
2021-06-30 01:54:18 +08:00
|
|
|
import { getProperties } from "@ember/object";
|
2015-11-21 01:30:04 +08:00
|
|
|
|
2023-03-17 18:18:42 +08:00
|
|
|
export default class EmailTemplate extends RestModel {
|
2015-11-21 01:30:04 +08:00
|
|
|
revert() {
|
2019-05-27 16:15:39 +08:00
|
|
|
return ajax(`/admin/customize/email_templates/${this.id}`, {
|
2020-03-27 04:00:10 +08:00
|
|
|
type: "DELETE",
|
2015-11-21 01:30:04 +08:00
|
|
|
}).then((result) =>
|
|
|
|
getProperties(result.email_template, "subject", "body", "can_revert")
|
|
|
|
);
|
2023-03-17 18:18:42 +08:00
|
|
|
}
|
|
|
|
}
|