From 1138dd67705829a6af0d6c610cf3dbe09082187c Mon Sep 17 00:00:00 2001 From: Joram Wilander Date: Wed, 14 Jun 2017 08:56:56 -0400 Subject: PLT-6657 Move system console to use v4 endpoints and redux (#6572) * Move system console to use v4 endpoints and redux * Rename logs dir to get past gitignore * Fix test email * Update brand unit test * Updates per feedback --- webapp/components/admin_console/index.js | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 webapp/components/admin_console/index.js (limited to 'webapp/components/admin_console/index.js') diff --git a/webapp/components/admin_console/index.js b/webapp/components/admin_console/index.js new file mode 100644 index 000000000..4b333e65c --- /dev/null +++ b/webapp/components/admin_console/index.js @@ -0,0 +1,27 @@ +// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved. +// See License.txt for license information. + +import {connect} from 'react-redux'; +import {bindActionCreators} from 'redux'; +import {getConfig} from 'mattermost-redux/actions/admin'; + +import * as Selectors from 'mattermost-redux/selectors/entities/admin'; + +import AdminConsole from './admin_console.jsx'; + +function mapStateToProps(state, ownProps) { + return { + ...ownProps, + config: Selectors.getConfig(state) + }; +} + +function mapDispatchToProps(dispatch) { + return { + actions: bindActionCreators({ + getConfig + }, dispatch) + }; +} + +export default connect(mapStateToProps, mapDispatchToProps)(AdminConsole); -- cgit v1.2.3-1-g7c22