From 602efa5bc98a2e02dd3a1312f2b73f697204923c Mon Sep 17 00:00:00 2001
From: JayRam Nai <jramnai007@gmail.com>
Date: Fri, 26 Feb 2021 03:39:47 +0530
Subject: [PATCH] docs: add annotations for
 AUTOMATIC_VERIFY_STUDENT_IDENTITY_FOR_TESTING feature flag (#26704)

---
 lms/envs/common.py | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/lms/envs/common.py b/lms/envs/common.py
index 8dcd607b537..9726759636a 100644
--- a/lms/envs/common.py
+++ b/lms/envs/common.py
@@ -374,6 +374,17 @@ FEATURES = {
     'ENABLE_COSMETIC_DISPLAY_PRICE': False,
 
     # Automatically approve student identity verification attempts
+    # .. toggle_name: FEATURES['AUTOMATIC_VERIFY_STUDENT_IDENTITY_FOR_TESTING']
+    # .. toggle_implementation: DjangoSetting
+    # .. toggle_default: False
+    # .. toggle_description: If set to True, then we want to skip posting anything to Software Secure. Bypass posting
+    #   anything to Software Secure if the auto verify feature for testing is enabled. We actually don't even create
+    #   the message because that would require encryption and message signing that rely on settings.VERIFY_STUDENT
+    #   values that aren't set in dev. So we just pretend like we successfully posted and automatically approve student
+    #   identity verification attempts.
+    # .. toggle_use_cases: open_edx
+    # .. toggle_creation_date: 2013-10-03
+    # .. toggle_tickets: https://github.com/edx/edx-platform/pull/1184
     'AUTOMATIC_VERIFY_STUDENT_IDENTITY_FOR_TESTING': False,
 
     # Maximum number of rows to include in the csv file for downloading problem responses.
-- 
GitLab