test(portal): add phase22 behavioural closure and route harmonization
This commit is contained in:
@@ -126,7 +126,7 @@ export const getAwaitingSubmission = (loggedInUserId) => {
|
||||
|
||||
export const createWatchedCases = async (formValues) => {
|
||||
var data = formValues;
|
||||
var queryUrl = "/api/endpoint/createwatchedcases_api";
|
||||
var queryUrl = buildFileQuery("/api/endpoint/createwatchedcases_api");
|
||||
|
||||
var config = {
|
||||
method: "post",
|
||||
@@ -286,7 +286,7 @@ export const sendRepCompleteMessage = async (
|
||||
};
|
||||
|
||||
export const setRepInvolvment = async (caseid, contactid) => {
|
||||
var queryUrl = "/api/file/createrepinvolvement_api";
|
||||
var queryUrl = buildFileQuery("/api/file/createrepinvolvement_api");
|
||||
|
||||
var data = { "incidentid": caseid, "contactid": contactid };
|
||||
var config = {
|
||||
@@ -303,7 +303,7 @@ export const setRepInvolvment = async (caseid, contactid) => {
|
||||
};
|
||||
|
||||
export const setCaseInvolvment = async (caseid, contactid) => {
|
||||
var queryUrl = "/api/file/createrepinvolvement_api";
|
||||
var queryUrl = buildFileQuery("/api/file/createrepinvolvement_api");
|
||||
|
||||
var data = { "incidentid": caseid, "contactid": contactid };
|
||||
var config = {
|
||||
|
||||
Reference in New Issue
Block a user