mirror of
https://github.com/plankanban/planka.git
synced 2025-12-20 01:14:12 +03:00
Project managers, board members, auto-update after reconnection, refactoring
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
import { bindActionCreators } from 'redux';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { allUsersExceptCurrentSelector } from '../selectors';
|
||||
import { usersExceptCurrentSelector } from '../selectors';
|
||||
import { closeModal, deleteUser, updateUser } from '../actions/entry';
|
||||
import UsersModal from '../components/UsersModal';
|
||||
|
||||
const mapStateToProps = (state) => {
|
||||
const items = allUsersExceptCurrentSelector(state);
|
||||
const users = usersExceptCurrentSelector(state);
|
||||
|
||||
return {
|
||||
items,
|
||||
items: users,
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user