mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:40:42 +08:00
a8a76198b1
Use imports instead.
19 lines
628 B
JavaScript
19 lines
628 B
JavaScript
import Component from "@ember/component";
|
|
import BufferedContent from "discourse/mixins/buffered-content";
|
|
import SettingComponent from "admin/mixins/setting-component";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
|
|
|
export default Component.extend(BufferedContent, SettingComponent, {
|
|
layoutName: "admin/templates/components/site-setting",
|
|
_save() {
|
|
return ajax(`/admin/themes/${this.model.id}/setting`, {
|
|
type: "PUT",
|
|
data: {
|
|
name: this.setting.setting,
|
|
value: this.get("buffered.value")
|
|
}
|
|
}).catch(popupAjaxError);
|
|
}
|
|
});
|