Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: remove staff access in courses for catalog views #37

Merged
merged 5 commits into from
Sep 16, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
feat: keep custom test with default beahviour
  • Loading branch information
johanseto committed Sep 16, 2024

Verified

This commit was signed with the committer’s verified signature.
johanseto Johan Seto Kaiba
commit a29df930a89a0b9e58d69689a863d2d334d79962
2 changes: 1 addition & 1 deletion lms/djangoapps/courseware/access.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
)
)

Expand Down
Loading