From a8b13afe481bc87d381043de2a8b8769930a94eb Mon Sep 17 00:00:00 2001 From: 0x29a <demid@opencraft.com> Date: Thu, 11 Jun 2020 10:07:50 +0200 Subject: [PATCH] Add 'ENABLE_ORA_USERNAMES_ON_DATA_EXPORT' feature toggle in common settigns file --- lms/envs/common.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/lms/envs/common.py b/lms/envs/common.py index 291d779ab0d..cc9f67cc91f 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -478,6 +478,19 @@ FEATURES = { # .. toggle_status: supported # .. toggle_warnings: None 'ENABLE_ORA_USER_STATE_UPLOAD_DATA': False, + + # .. toggle_name: ENABLE_ORA_USERNAMES_ON_DATA_EXPORT + # .. toggle_implementation: DjangoSetting + # .. toggle_default: False + # .. toggle_description: Set to True to add deanonymized usernames to ORA data report. + # .. toggle_category: ora + # .. toggle_use_cases: incremental_release + # .. toggle_creation_date: 2020-06-11 + # .. toggle_expiration_date: None + # .. toggle_tickets: https://openedx.atlassian.net/browse/TNL-7273 + # .. toggle_status: supported + # .. toggle_warnings: None + 'ENABLE_ORA_USERNAMES_ON_DATA_EXPORT': False, } # Settings for the course reviews tool template and identification key, set either to None to disable course reviews -- GitLab