removed references to doc history
This commit is contained in:
@@ -365,36 +365,6 @@ export const getSearchDocumentDetailsPaged = (
|
||||
});
|
||||
};
|
||||
|
||||
export const getSearchDocumentHistory = (documentID) => {
|
||||
return axios
|
||||
.get(
|
||||
"/api/endpoint/getsearchdocumenthistory_api?documentid=" +
|
||||
documentID
|
||||
)
|
||||
.then((res) => {
|
||||
return res.data;
|
||||
})
|
||||
.catch((error) => {
|
||||
console.log("API call error", error);
|
||||
});
|
||||
};
|
||||
|
||||
export const getSearchDocumentHistoryPaged = (documentID, pageNumber) => {
|
||||
return axios
|
||||
.get(
|
||||
"/api/endpoint/getsearchdocumenthistorypaged_api?documentid=" +
|
||||
documentID +
|
||||
"&pageNumber=" +
|
||||
pageNumber
|
||||
)
|
||||
.then((res) => {
|
||||
return res.data;
|
||||
})
|
||||
.catch((error) => {
|
||||
console.log("API call error", error);
|
||||
});
|
||||
};
|
||||
|
||||
export const getLinkedCases = (parentIncidentid) => {
|
||||
return axios
|
||||
.get(
|
||||
|
||||
Reference in New Issue
Block a user