You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
477 B
21 lines
477 B
export const LOCAL_SETTING_CHANGE = 'LOCAL_SETTING_CHANGE';
|
|
|
|
export function changeLocalSetting(key, value) {
|
|
return dispatch => {
|
|
dispatch({
|
|
type: LOCAL_SETTING_CHANGE,
|
|
key,
|
|
value,
|
|
});
|
|
|
|
dispatch(saveLocalSettings());
|
|
};
|
|
};
|
|
|
|
export function saveLocalSettings() {
|
|
return (_, getState) => {
|
|
const localSettings = getState().get('localSettings').toJS();
|
|
localStorage.setItem('mastodon-settings', JSON.stringify(localSettings));
|
|
};
|
|
};
|