1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-30 15:58:28 +09:00
YuruToot/app/assets/javascripts/components/actions/settings.jsx

18 lines
330 B
JavaScript

import axios from 'axios';
export const SETTING_CHANGE = 'SETTING_CHANGE';
export function changeSetting(key, value) {
return (dispatch, getState) => {
dispatch({
type: SETTING_CHANGE,
key,
value
});
axios.put('/api/web/settings', {
data: getState().get('settings').toJS()
});
};
};