Skip to content
Snippets Groups Projects
Unverified Commit 03d7d878 authored by Calen Pennington's avatar Calen Pennington Committed by GitHub
Browse files

Merge pull request #21160 from cpennington/fbe-orphan-block

Only attempt to use the parent's CONTENT_GATING_PARTITION settings if…
parents c3d923f2 0e187f85
No related branches found
No related tags found
No related merge requests found
......@@ -52,9 +52,11 @@ class ContentTypeGatingFieldOverride(FieldOverrideProvider):
# For Feature Based Enrollments, we want to inherit group access configurations
# from parent blocks. The use case is to allow granting access
# to all graded problems in a unit at the unit level
merged_group_access = block.get_parent().merged_group_access
if merged_group_access and CONTENT_GATING_PARTITION_ID in merged_group_access:
return original_group_access
parent = block.get_parent()
if parent is not None:
merged_group_access = parent.merged_group_access
if merged_group_access and CONTENT_GATING_PARTITION_ID in merged_group_access:
return original_group_access
original_group_access.setdefault(
CONTENT_GATING_PARTITION_ID,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment