mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 03:23:43 +08:00
11 lines
335 B
Plaintext
11 lines
335 B
Plaintext
|
import RestModel from 'discourse/models/rest';
|
||
|
const { getProperties } = Ember;
|
||
|
|
||
|
export default RestModel.extend({
|
||
|
revert() {
|
||
|
return Discourse.ajax(`/admin/customize/email_templates/${this.get('id')}`, {
|
||
|
method: 'DELETE'
|
||
|
}).then(result => getProperties(result.email_template, 'subject', 'body', 'can_revert'));
|
||
|
}
|
||
|
});
|