added in info banner for case summary

This commit is contained in:
2024-10-07 09:51:10 +01:00
parent ba05741b8e
commit 8239d9ff77
10 changed files with 190 additions and 6 deletions
+12
View File
@@ -227,6 +227,18 @@ export const getBasicSearch = (searchString) => {
});
};
export const getCaseMessage = (searchString) => {
return axios
.get(BASE_URL + "/api/endpoint/getcasemessage_api?id=" + searchString)
.then((res) => {
return res.data;
})
.catch((error) => {
consoleLogger(error);
return error.response;
});
};
export const getIncidentbyID = (searchString) => {
return axios
.get(