* Add user access token UI * Fix enter press and update mattermost-redux * Updating UI for access token stuff (#7066) * Revert segment key
32 строки
871 B
JavaScript
32 строки
871 B
JavaScript
// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import {connect} from 'react-redux';
|
|
import {bindActionCreators} from 'redux';
|
|
import {getTeams, getTeamStats} from 'mattermost-redux/actions/teams';
|
|
import {getUser, getUserAccessToken} from 'mattermost-redux/actions/users';
|
|
|
|
import {getTeamsList} from 'mattermost-redux/selectors/entities/teams';
|
|
|
|
import SystemUsers from './system_users.jsx';
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
return {
|
|
teams: getTeamsList(state),
|
|
...ownProps
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return {
|
|
actions: bindActionCreators({
|
|
getTeams,
|
|
getTeamStats,
|
|
getUser,
|
|
getUserAccessToken
|
|
}, dispatch)
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(SystemUsers);
|