discourse/app/assets/javascripts/admin/models/email-template.js.es6

12 lines
368 B
Plaintext
Raw Normal View History

2016-07-01 01:55:44 +08:00
import { ajax } from 'discourse/lib/ajax';
2015-11-21 01:30:04 +08:00
import RestModel from 'discourse/models/rest';
const { getProperties } = Ember;
export default RestModel.extend({
revert() {
2016-07-01 01:55:44 +08:00
return ajax(`/admin/customize/email_templates/${this.get('id')}`, {
2015-11-21 01:30:04 +08:00
method: 'DELETE'
}).then(result => getProperties(result.email_template, 'subject', 'body', 'can_revert'));
}
});