1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-08 04:09:53 +00:00
2016-07-11 12:57:05 -04:00

12 lines
368 B
JavaScript

import { ajax } from 'discourse/lib/ajax';
import RestModel from 'discourse/models/rest';
const { getProperties } = Ember;
export default RestModel.extend({
revert() {
return ajax(`/admin/customize/email_templates/${this.get('id')}`, {
method: 'DELETE'
}).then(result => getProperties(result.email_template, 'subject', 'body', 'can_revert'));
}
});