mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-14 20:24:17 -05:00
24 lines
420 B
JavaScript
24 lines
420 B
JavaScript
import axios from 'axios';
|
|
|
|
export const SETTING_CHANGE = 'SETTING_CHANGE';
|
|
|
|
export function changeSetting(key, value) {
|
|
return dispatch => {
|
|
dispatch({
|
|
type: SETTING_CHANGE,
|
|
key,
|
|
value,
|
|
});
|
|
|
|
dispatch(saveSettings());
|
|
};
|
|
};
|
|
|
|
export function saveSettings() {
|
|
return (_, getState) => {
|
|
axios.put('/api/web/settings', {
|
|
data: getState().get('settings').toJS(),
|
|
});
|
|
};
|
|
};
|