discourse/app/assets/javascripts/admin/models/site-text.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
339 B
JavaScript
Raw Normal View History

2016-06-30 13:55:44 -04:00
import { ajax } from "discourse/lib/ajax";
import RestModel from "discourse/models/rest";
const { getProperties } = Ember;
export default RestModel.extend({
revert() {
return ajax(`/admin/customize/site_texts/${this.id}`, {
type: "DELETE"
}).then(result => getProperties(result.site_text, "value", "can_revert"));
}
});