feat: add environment variable support for text request body

This commit is contained in:
KK Surendran
2025-02-22 14:54:43 +05:30
parent 17f2a56512
commit 6ef50ffa06

View File

@ -86,6 +86,7 @@ HttpRequestModel substituteHttpRequestModel(
value: substituteVariables(param.value, envMap, activeEnvironmentId),
);
}).toList(),
body: substituteVariables(httpRequestModel.body, envMap, activeEnvironmentId),
);
return newRequestModel;
}