mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 21:23:59 +08:00
48193767bf
Automatically generated by `eslint --fix` to satisfy the updated configuration
14 lines
406 B
JavaScript
14 lines
406 B
JavaScript
import { getProperties } from "@ember/object";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
import RestModel from "discourse/models/rest";
|
|
|
|
export default class EmailTemplate extends RestModel {
|
|
revert() {
|
|
return ajax(`/admin/customize/email_templates/${this.id}`, {
|
|
type: "DELETE",
|
|
}).then((result) =>
|
|
getProperties(result.email_template, "subject", "body", "can_revert")
|
|
);
|
|
}
|
|
}
|