masto-fe/app/javascript/mastodon/actions/settings.js

24 lines
420 B
JavaScript
Raw Normal View History

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());
2017-01-10 16:25:10 +00:00
};
};
2017-01-10 16:25:10 +00:00
export function saveSettings() {
return (_, getState) => {
axios.put('/api/web/settings', {
data: getState().get('settings').toJS(),
});
};
};