mirror of
https://github.com/plankanban/planka.git
synced 2025-12-26 17:25:03 +03:00
17 lines
354 B
JavaScript
17 lines
354 B
JavaScript
|
|
import EntryActionTypes from '../constants/EntryActionTypes';
|
||
|
|
|
||
|
|
const handleSocketDisconnect = () => ({
|
||
|
|
type: EntryActionTypes.SOCKET_DISCONNECT_HANDLE,
|
||
|
|
payload: {},
|
||
|
|
});
|
||
|
|
|
||
|
|
const handleSocketReconnect = () => ({
|
||
|
|
type: EntryActionTypes.SOCKET_RECONNECT_HANDLE,
|
||
|
|
payload: {},
|
||
|
|
});
|
||
|
|
|
||
|
|
export default {
|
||
|
|
handleSocketDisconnect,
|
||
|
|
handleSocketReconnect,
|
||
|
|
};
|