WIP Asset Management#599
Draft
ormsbee wants to merge 3 commits into
Draft
Conversation
Introduce a new "assets" applet in openedx_content with two new
PublishableEntity types:
- Asset: logically one thing that may exist as multiple file variants
(e.g. an ebook as epub/pdf/mobi). Files attach at the version level via
AssetVersion <-> Media through AssetVersionMedia (keyed by variant),
mirroring the ComponentVersionMedia pattern.
- AssetBundle: a group of related Assets (e.g. a video plus its VTT
subtitles). Membership is a flat, unordered AssetBundleVersion <-> Asset
join (AssetBundleVersionAsset); it deliberately does NOT reuse Container
/ EntityList machinery and has no child ordering.
Both are classified by normalized AssetType / AssetBundleType lookup
tables (in the spirit of ComponentType / ContainerType), whose code is
woven into the PublishableEntity entity_ref ("{type.code}:{code}").
Includes models.py, api.py, admin.py, the generated migration, and tests.
Both publishable model pairs are registered in apps.py and re-exported
through the umbrella models / models_api / api modules.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I'm experimenting with a Claude-generated stab at this. As much to test my use of Claude as to build this particular feature.