Skip to content

Commit

Permalink
Setting the default visibility of assessment to false.
Browse files Browse the repository at this point in the history
  • Loading branch information
sumathi-thirumani committed Oct 16, 2024
1 parent ba0514f commit 0ea2041
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/src/config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ nconf.defaults({
webSocketURL: process.env.WEB_SOCKET_URL,
disableSdcFunctionality: process.env.DISABLE_SDC_FUNCTIONALITY === 'true',
edxURL: process.env.EDX_URL,
disableEASFunctionality: process.env.DISABLE_EAS_FUNCTIONALITY === 'true'
disableEASFunctionality: process.env.DISABLE_EAS_FUNCTIONALITY ? process.env.DISABLE_EAS_FUNCTIONALITY === 'true' : true
},
sdc: {
rootURL: process.env.SDC_API_URL,
Expand Down
2 changes: 1 addition & 1 deletion tools/config/update-configmap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ BANNER_ENVIRONMENT="$bannerEnvironment"
BANNER_COLOR="$bannerColor"
WEB_SOCKET_URL="wss://$SERVER_FRONTEND/api/socket"
IS_RATE_LIMIT_ENABLED=true
DISABLE_EAS_FUNCTIONALITY=false
DISABLE_EAS_FUNCTIONALITY=true
RATE_LIMIT_WINDOW_IN_SEC="60"
RATE_LIMIT_LIMIT="1000"

Expand Down

0 comments on commit 0ea2041

Please sign in to comment.