2021-01-18 12:53:45 -05:00
|
|
|
import { getProperties } from "@ember/object";
|
2023-10-10 14:38:59 -04:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
|
|
|
import RestModel from "discourse/models/rest";
|
2015-08-07 14:05:08 -04:00
|
|
|
|
2023-03-17 06:18:42 -04:00
|
|
|
export default class SiteText extends RestModel {
|
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"));
|
2023-03-17 06:18:42 -04:00
|
|
|
}
|
2023-07-19 11:06:13 -04:00
|
|
|
|
|
|
|
dismissOutdated(locale) {
|
|
|
|
return ajax(
|
|
|
|
`/admin/customize/site_texts/${this.id}/dismiss_outdated?locale=${locale}`,
|
|
|
|
{
|
|
|
|
type: "PUT",
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2023-03-17 06:18:42 -04:00
|
|
|
}
|