Skip to content

Commit

Permalink
Merge branch 'entos-service' of github.com:rdkcentral/firebolt-certif…
Browse files Browse the repository at this point in the history
…ication-app into entos-service
  • Loading branch information
Nandana-NNR committed Oct 10, 2024
2 parents 7e58d12 + ea3890b commit 49408f1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/utils/Utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ async function getschemaValidationDone(name, response, sdkType) {
function censorData(methodName, response) {
try {
const json = censorDataJson;
methodName = methodName.charAt(0).toUpperCase() + methodName.slice(1);
if (methodName in json) {
for (let i = 0; i < json[methodName].field.length; i++) {
if (response[json[methodName].field[i]]) {
Expand Down
4 changes: 4 additions & 0 deletions webpack.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ module.exports = {
name: 'CensorData',
alias: ['/plugins/censorData.json', '/src/source/censorData.json'],
},
{
name: 'runTestHandler',
alias: ['/plugins/runTestHandler.js', '/src/pubsub/handlers/RunTestHandler.js'],
},
],
'resolve'
),
Expand Down

0 comments on commit 49408f1

Please sign in to comment.