test(actions): phase 6 add parity and behavioural service hardening checks
This commit is contained in:
@@ -50,14 +50,6 @@ export const getRepsFromBlobProxy = async (containerName) => {
|
||||
};
|
||||
|
||||
export const getAwaitingSubmissionFromBlobProxy = async (containerName) => {
|
||||
console.log(
|
||||
"///////////////////////getAwaitingSubmissionFromBlobProxy: " +
|
||||
containerName,
|
||||
"/api/file/getawaitingsubmissionfromblobproxy?container=" +
|
||||
containerName,
|
||||
"\n///////////////////////\n"
|
||||
);
|
||||
|
||||
try {
|
||||
const res = await axios.get(
|
||||
BASE_URL +
|
||||
@@ -163,7 +155,6 @@ export const uploadSingleFile = async (filesObj, containerID, casefolderID) => {
|
||||
formData.append("casefolderID", casefolderID);
|
||||
|
||||
for (let i = 0; i < files.length; i++) {
|
||||
console.log(files.length);
|
||||
formData.append(files[i].name, files[i]);
|
||||
}
|
||||
|
||||
@@ -219,8 +210,6 @@ export const generateRepPDF = async (
|
||||
casefolderID,
|
||||
options = {}
|
||||
) => {
|
||||
console.log("generateRepPDF function: " + formValues);
|
||||
|
||||
var queryUrl =
|
||||
"/api/file/generatepdf" + (options.download ? "?download=true" : "");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user