21 lines
569 B
JavaScript
Raw Normal View History

2018-06-15 17:03:24 +02:00
import RestModel from "discourse/models/rest";
import { ajax } from "discourse/lib/ajax";
import { getProperties } from "@ember/object";
export default class SiteText extends RestModel {
revert(locale) {
return ajax(`/admin/customize/site_texts/${this.id}?locale=${locale}`, {
type: "DELETE",
}).then((result) => getProperties(result.site_text, "value", "can_revert"));
}
dismissOutdated(locale) {
return ajax(
`/admin/customize/site_texts/${this.id}/dismiss_outdated?locale=${locale}`,
{
type: "PUT",
}
);
}
}