12 lines
341 B
Plaintext
Raw Normal View History

2018-06-15 17:03:24 +02: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}`, {
2018-06-15 17:03:24 +02:00
method: "DELETE"
}).then(result => getProperties(result.site_text, "value", "can_revert"));
}
});