1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-24 11:33:47 -05:00

20 lines
346 B
React
Raw Normal View History

import axios from 'axios';
export const SETTING_CHANGE = 'SETTING_CHANGE';
export function changeSetting(key, value) {
2017-01-10 17:25:10 +01:00
return {
type: SETTING_CHANGE,
key,
value
};
};
2017-01-10 17:25:10 +01:00
export function saveSettings() {
return (_, getState) => {
axios.put('/api/web/settings', {
data: getState().get('settings').toJS()
});
};
};