mirror of
https://github.com/discourse/discourse.git
synced 2024-12-04 04:43:39 +08:00
10 lines
381 B
Plaintext
10 lines
381 B
Plaintext
|
import BufferedContent from 'discourse/mixins/buffered-content';
|
||
|
import SettingComponent from 'admin/mixins/setting-component';
|
||
|
|
||
|
export default Ember.Component.extend(BufferedContent, SettingComponent, {
|
||
|
layoutName: 'admin/templates/components/site-setting',
|
||
|
_save() {
|
||
|
return this.get('model').saveSettings(this.get('setting.setting'), this.get('buffered.value'));
|
||
|
}
|
||
|
});
|