1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 16:48:04 +02:00
onion/js/actions/wallet_settings_actions.js

26 lines
590 B
JavaScript
Raw Permalink Normal View History

2015-06-17 17:48:23 +02:00
'use strict';
import { alt } from '../alt';
2015-06-17 17:48:23 +02:00
import WalletSettingsFetcher from '../fetchers/wallet_settings_fetcher';
class WalletSettingsActions {
constructor() {
this.generateActions(
'updateWalletSettings'
);
}
fetchWalletSettings() {
WalletSettingsFetcher.fetchOne()
.then((res) => {
this.actions.updateWalletSettings(res.wallet_settings);
})
.catch((err) => {
2015-07-17 15:41:09 +02:00
console.logGlobal(err);
2015-06-17 17:48:23 +02:00
});
}
}
export default alt.createActions(WalletSettingsActions);