@@ -1385,6 +1385,31 @@ def add_optional_apps(optional_apps, installed_apps):
13851385# .. toggle_tickets: 'https://openedx.atlassian.net/browse/VAN-622'
13861386ENABLE_COPPA_COMPLIANCE = False
13871387
1388+ # .. toggle_name: settings.ENABLE_DISCUSSION_HOME_PANEL
1389+ # .. toggle_implementation: DjangoSetting
1390+ # .. toggle_default: True
1391+ # .. toggle_description: Hides or displays a welcome panel under the Discussion tab, which includes a subscription
1392+ # on/off setting for discussion digest emails. (Note: set to False by default in the CMS).
1393+ # .. toggle_use_cases: open_edx
1394+ # .. toggle_creation_date: 2013-07-30
1395+ # .. toggle_warning: This should remain off in production until digest notifications are online.
1396+ # .. toggle_tickets: https://github.com/openedx/edx-platform/pull/520
1397+ ENABLE_DISCUSSION_HOME_PANEL : bool
1398+
1399+ # .. toggle_name: settings.ENABLE_MAX_FAILED_LOGIN_ATTEMPTS
1400+ # .. toggle_implementation: DjangoSetting
1401+ # .. toggle_default: True
1402+ # .. toggle_description: This feature will keep track of the number of failed login attempts on a given user's
1403+ # email. If the number of consecutive failed login attempts - without a successful login at some point - reaches
1404+ # a configurable threshold (default 6), then the account will be locked for a configurable amount of seconds
1405+ # (30 minutes) which will prevent additional login attempts until this time period has passed. If a user
1406+ # successfully logs in, all the counter which tracks the number of failed attempts will be reset back to 0. If
1407+ # set to False then account locking will be disabled for failed login attempts. (Note: set to False by default in the CMS).
1408+ # .. toggle_use_cases: open_edx
1409+ # .. toggle_creation_date: 2014-01-30
1410+ # .. toggle_tickets: https://github.com/openedx/edx-platform/pull/2331
1411+ ENABLE_MAX_FAILED_LOGIN_ATTEMPTS : bool
1412+
13881413###################### CAPA External Code Evaluation #######################
13891414
13901415# Used with XQueue
@@ -2953,3 +2978,17 @@ def should_send_learning_badge_events(settings):
29532978# .. toggle_use_cases: open_edx
29542979# .. toggle_creation_date: 2012-07-13
29552980WIKI_ENABLED = True
2981+
2982+ # .. setting_name: MAINTENANCE_BANNER_TEXT
2983+ # .. setting_default: None
2984+ # .. setting_description: Specifies the text that is rendered on the maintenance banner.
2985+ # (Note: set to 'Sample banner message' by default in the CMS).
2986+ # .. setting_warning: Depends on the `open_edx_util.display_maintenance_warning` waffle switch.
2987+ # The banner is only rendered when the switch is activated.
2988+ MAINTENANCE_BANNER_TEXT : str | None
2989+
2990+ # .. setting_name: STUDIO_NAME
2991+ # .. setting_default: Your Platform Studio
2992+ # .. setting_description: The name that will appear on the landing page of Studio, as well as in various emails and
2993+ # templates. (Note: set to 'Studio' by default in the LMS).
2994+ STUDIO_NAME : str
0 commit comments