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