mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
12 lines
299 B
JavaScript
12 lines
299 B
JavaScript
|
import EntryActionTypes from '../../constants/EntryActionTypes';
|
||
|
|
||
|
export const handleSocketDisconnect = () => ({
|
||
|
type: EntryActionTypes.SOCKET_DISCONNECT_HANDLE,
|
||
|
payload: {},
|
||
|
});
|
||
|
|
||
|
export const handleSocketReconnect = () => ({
|
||
|
type: EntryActionTypes.SOCKET_RECONNECT_HANDLE,
|
||
|
payload: {},
|
||
|
});
|