🐂 Support for session-tracking

This commit is contained in:
Rishi Ghan
2023-07-26 10:15:07 -07:00
parent a2f8d8b1e8
commit 26fdb6d3a4
7 changed files with 90 additions and 49 deletions

View File

@@ -40,7 +40,7 @@ import { success } from "react-notification-system-redux";
import { isNil, map } from "lodash";
export const getServiceStatus = (serviceName?: string) => async dispatch => {
export const getServiceStatus = (serviceName?: string) => async (dispatch) => {
axios
.request({
url: `${LIBRARY_SERVICE_BASE_URI}/getHealthInformation`,
@@ -91,9 +91,9 @@ export const fetchComicBookMetadata = () => async (dispatch) => {
// }),
// );
dispatch({
type: LS_IMPORT,
type: "EMIT_SOCKET_EVENT",
meta: { remote: true },
data: {},
data: { gym: "asas" },
});
};
export const toggleImportQueueStatus = (options) => async (dispatch) => {