2015-08-07 14:05:08 -04:00
|
|
|
import RestModel from "discourse/models/rest";
|
2016-06-30 13:55:44 -04:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2021-01-18 12:53:45 -05:00
|
|
|
import { getProperties } from "@ember/object";
|
2015-08-07 14:05:08 -04:00
|
|
|
|
|
|
|
export default RestModel.extend({
|
2021-01-18 12:53:45 -05:00
|
|
|
revert(locale) {
|
|
|
|
return ajax(`/admin/customize/site_texts/${this.id}?locale=${locale}`, {
|
2020-03-26 16:00:10 -04:00
|
|
|
type: "DELETE",
|
2015-11-23 16:45:05 -05:00
|
|
|
}).then((result) => getProperties(result.site_text, "value", "can_revert"));
|
|
|
|
},
|
2015-08-07 14:05:08 -04:00
|
|
|
});
|