2017-12-08 19:13:21 +00:00
|
|
|
import * as types from './actionsTypes';
|
|
|
|
|
2018-02-16 22:57:46 +00:00
|
|
|
export function requestActiveUser(users) {
|
2017-12-08 19:13:21 +00:00
|
|
|
return {
|
|
|
|
type: types.ACTIVE_USERS.REQUEST,
|
2018-02-16 22:57:46 +00:00
|
|
|
users
|
2017-12-08 19:13:21 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function setActiveUser(data) {
|
|
|
|
return {
|
|
|
|
type: types.ACTIVE_USERS.SET,
|
|
|
|
data
|
|
|
|
};
|
|
|
|
}
|