Skip to content
Snippets Groups Projects
Unverified Commit 3ed4c654 authored by Felipe Montoya's avatar Felipe Montoya Committed by GitHub
Browse files

Merge pull request #26942 from mitodl/arslan/243-allow-discussion-annotation

[TSD] Added annotation for ALLOW_HIDING_DISCUSSION_TAB feature flag
parents 74ef4664 c2ca03ba
Branches
Tags release-2020-06-18-11.22
No related merge requests found
......@@ -3,6 +3,15 @@
def plugin_settings(settings):
"""Settings for the discussions plugin. """
# .. toggle_name: ALLOW_HIDING_DISCUSSION_TAB
# .. toggle_implementation: DjangoSetting
# .. toggle_default: False
# .. toggle_description: If True, it adds an option to show/hide the discussions tab.
# .. toggle_use_cases: open_edx
# .. toggle_creation_date: 2015-06-15
# .. toggle_target_removal_date: None
# .. toggle_warnings: None
# .. toggle_tickets: https://github.com/edx/edx-platform/pull/8474
settings.FEATURES['ALLOW_HIDING_DISCUSSION_TAB'] = False
settings.DISCUSSION_SETTINGS = {
'MAX_COMMENT_DEPTH': 2,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment