mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 01:25:17 +01:00
24 lines
513 B
JavaScript
24 lines
513 B
JavaScript
import alt from '../alt';
|
|
import UserFetcher from '../fetchers/user_fetcher';
|
|
|
|
|
|
class UserActions {
|
|
constructor() {
|
|
this.generateActions(
|
|
'updateCurrentUser'
|
|
);
|
|
}
|
|
|
|
fetchCurrentUser() {
|
|
UserFetcher.fetchOne()
|
|
.then((res) => {
|
|
this.actions.updateCurrentUser(res['users'][0]);
|
|
})
|
|
.catch((err) => {
|
|
console.log(err);
|
|
});
|
|
}
|
|
};
|
|
|
|
export default alt.createActions(UserActions);
|