You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
476 B
JavaScript
22 lines
476 B
JavaScript
import EntryActionTypes from '../../constants/EntryActionTypes';
|
|
import ModalTypes from '../../constants/ModalTypes';
|
|
|
|
export const openUsersModal = () => ({
|
|
type: EntryActionTypes.MODAL_OPEN,
|
|
payload: {
|
|
type: ModalTypes.USERS,
|
|
},
|
|
});
|
|
|
|
export const openAddProjectModal = () => ({
|
|
type: EntryActionTypes.MODAL_OPEN,
|
|
payload: {
|
|
type: ModalTypes.ADD_PROJECT,
|
|
},
|
|
});
|
|
|
|
export const closeModal = () => ({
|
|
type: EntryActionTypes.MODAL_CLOSE,
|
|
payload: {},
|
|
});
|