accounts-frontend/src/services/authFlow/index.js

12 lines
250 B
JavaScript
Raw Normal View History

2016-07-30 23:48:58 +05:30
import AuthFlow from './AuthFlow';
2016-03-02 02:06:14 +05:30
import * as actions from 'components/auth/actions';
import {updateUser} from 'components/user/actions';
2016-03-02 02:06:14 +05:30
const availableActions = {
...actions,
2016-05-30 09:53:27 +05:30
updateUser
};
export default new AuthFlow(availableActions);