mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
13 lines
364 B
Text
13 lines
364 B
Text
|
import RestModel from 'discourse/models/rest';
|
||
|
|
||
|
const { getProperties } = Ember;
|
||
|
console.log(getProperties);
|
||
|
|
||
|
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'));
|
||
|
}
|
||
|
});
|