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

11 lines
227 B
JavaScript
Raw Normal View History

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