mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-01 01:18:10 +02:00
Co-authored-by: Christopher Kolstad <chriswk@getunleash.ai> Co-authored-by: Fredrik Strand Oseberg <fredrik.no@gmail.com>
18 lines
698 B
JavaScript
18 lines
698 B
JavaScript
import { connect } from 'react-redux';
|
|
import AuthenticationComponent from './authentication-component';
|
|
import { insecureLogin, passwordLogin } from '../../store/user/actions';
|
|
import { loadInitialData } from './../../store/loader';
|
|
|
|
const mapDispatchToProps = (dispatch, props) => ({
|
|
insecureLogin: (path, user) => insecureLogin(path, user)(dispatch),
|
|
passwordLogin: (path, user) => passwordLogin(path, user)(dispatch),
|
|
loadInitialData: () => loadInitialData(props.flags)(dispatch),
|
|
});
|
|
|
|
const mapStateToProps = state => ({
|
|
user: state.user.toJS(),
|
|
flags: state.uiConfig.toJS().flags,
|
|
});
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(AuthenticationComponent);
|