mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
7 lines
248 B
JavaScript
Executable file
7 lines
248 B
JavaScript
Executable file
import EntryActionTypes from '../../constants/EntryActionTypes';
|
|
|
|
// eslint-disable-next-line import/prefer-default-export
|
|
export const fetchActionsInCurrentCard = () => ({
|
|
type: EntryActionTypes.ACTIONS_IN_CURRENT_CARD_FETCH,
|
|
payload: {},
|
|
});
|