Skip to content

Disable refund failure notification

Hassan Tariq edited this page Mar 12, 2020 · 9 revisions

Disable refund failure notification:

This flag is used to disable edX's default feature of sending refund failure notification from edx-platform. Its default value is True as we are sending a refund failure emails from the ecommerce instead of edx-platform to get more error details in support email.

Configuration:

  • Add the following feature flag in environment file of lms (lms.env.json) located at /edx/app/edxapp/edx-platform directory.
"FEATURES": 
{
    ...
    "DISABLE_REFUND_FAILURE_NOTIFICATION": true,
    ...
}