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: include children info in xblock api #33977

Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,16 @@ def handle_xblock(request, usage_key_string=None):
xblock, is_concise=True
)
return JsonResponse(ancestor_info)
elif "childrenInfo" in fields:
xblock = get_xblock(usage_key, request.user)
children_info = _create_xblock_child_info(
xblock,
course_outline=None,
graders=None,
include_children_predicate=ALWAYS,
is_concise=True
)
return JsonResponse(children_info)
Comment on lines +181 to +190
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks better, thanks 👍🏻

# TODO: pass fields to get_block_info and only return those
with modulestore().bulk_operations(usage_key.course_key):
response = get_block_info(get_xblock(usage_key, request.user))
Expand Down Expand Up @@ -825,7 +835,7 @@ def get_block_info(
rewrite_static_links=True,
include_ancestor_info=False,
include_publishing_info=False,
include_children_predicate=False,
include_children_predicate=NEVER,
):
"""
metadata, data, id representation of a leaf block fetcher.
Expand Down
Loading