From a29df930a89a0b9e58d69689a863d2d334d79962 Mon Sep 17 00:00:00 2001 From: Johan Castiblanco Date: Thu, 12 Sep 2024 10:57:35 -0500 Subject: [PATCH] feat: keep custom test with default beahviour --- lms/djangoapps/courseware/access.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/courseware/access.py b/lms/djangoapps/courseware/access.py index f17aa6257f3c..de92d3895ffb 100644 --- a/lms/djangoapps/courseware/access.py +++ b/lms/djangoapps/courseware/access.py @@ -396,7 +396,7 @@ def can_see_in_catalog(): _has_catalog_visibility(courselike, CATALOG_VISIBILITY_CATALOG_AND_ABOUT) or ( _has_staff_access_to_descriptor(user, courselike, courselike.id) - and getattr(settings, "STAFF_CAN_SEE_IN_CATALOG", False) + and getattr(settings, "STAFF_CAN_SEE_IN_CATALOG", True) ) )