mirror of
https://github.com/plankanban/planka.git
synced 2025-08-01 19:45:26 +02:00
16 lines
258 B
JavaScript
16 lines
258 B
JavaScript
|
import ActionTypes from '../constants/ActionTypes';
|
||
|
|
||
|
/* Actions */
|
||
|
|
||
|
export const openModal = (type) => ({
|
||
|
type: ActionTypes.MODAL_OPEN,
|
||
|
payload: {
|
||
|
type,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export const closeModal = () => ({
|
||
|
type: ActionTypes.MODAL_CLOSE,
|
||
|
payload: {},
|
||
|
});
|