import * as types from './actionsTypes';
export function requestActiveUser(users) {
return {
type: types.ACTIVE_USERS.REQUEST,
users
};
}
export function setActiveUser(data) {
type: types.ACTIVE_USERS.SET,
data