14115 SIPs events on summary page

This commit is contained in:
2025-02-19 15:00:25 +00:00
parent e1444887cb
commit ae5c0b4e39
10 changed files with 310 additions and 1 deletions
+8
View File
@@ -7,6 +7,7 @@ export const searchResultsActionTypes = {
SETDOCUMENTHISTORY: "SETDOCUMENTHISTORY",
SETREPRESENTATIONS: "SETREPRESENTATIONS",
SETDNSCOORDS: "SETDNSCOORDS",
SETEVENTDETAILS: "SETEVENTDETAILS",
};
export const getSearchResultshObj = () => (dispatch) => {
@@ -55,3 +56,10 @@ export const setDNSCoords = (dnsCoords) => (dispatch) => {
dnsCoordsObj: dnsCoords,
});
};
export const setEventDetails = (eventsDetails) => (dispatch) => {
return dispatch({
type: searchResultsActionTypes.SETEVENTDETAILS,
eventDetailsObj: eventsDetails,
});
};