mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 06:23:39 +08:00
282f53f0cd
Allows theme authors to specify custom theme settings for the theme. Centralizes the theme/site settings into a single construct
10 lines
381 B
JavaScript
10 lines
381 B
JavaScript
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'));
|
|
}
|
|
});
|