This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-01-09 05:00:55 -08:00
|
|
|
import axios from 'axios';
|
|
|
|
|
|
|
|
export const SETTING_CHANGE = 'SETTING_CHANGE';
|
|
|
|
|
|
|
|
export function changeSetting(key, value) {
|
2017-01-10 08:25:10 -08:00
|
|
|
return {
|
|
|
|
type: SETTING_CHANGE,
|
|
|
|
key,
|
|
|
|
value
|
|
|
|
};
|
|
|
|
};
|
2017-01-09 05:00:55 -08:00
|
|
|
|
2017-01-10 08:25:10 -08:00
|
|
|
export function saveSettings() {
|
|
|
|
return (_, getState) => {
|
2017-01-09 05:00:55 -08:00
|
|
|
axios.put('/api/web/settings', {
|
|
|
|
data: getState().get('settings').toJS()
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|