mirror of
https://github.com/plankanban/planka.git
synced 2025-12-26 09:15:01 +03:00
8 lines
248 B
JavaScript
Executable File
8 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: {},
|
|
});
|