mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 12:23:37 +08:00
48193767bf
Automatically generated by `eslint --fix` to satisfy the updated configuration
21 lines
569 B
JavaScript
21 lines
569 B
JavaScript
import { getProperties } from "@ember/object";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
import RestModel from "discourse/models/rest";
|
|
|
|
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",
|
|
}
|
|
);
|
|
}
|
|
}
|