mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
13 lines
361 B
JavaScript
Executable file
13 lines
361 B
JavaScript
Executable file
import EntryActionTypes from '../../constants/EntryActionTypes';
|
|
|
|
export const fetchActionsInCurrentCard = () => ({
|
|
type: EntryActionTypes.ACTIONS_IN_CURRENT_CARD_FETCH,
|
|
payload: {},
|
|
});
|
|
|
|
export const toggleActionsDetailsInCurrentCard = (isVisible) => ({
|
|
type: EntryActionTypes.ACTIONS_DETAILS_IN_CURRENT_CARD_TOGGLE,
|
|
payload: {
|
|
isVisible,
|
|
},
|
|
});
|