Preserve sections and notebook path when copying or bundling a course#342
Open
JimWallace wants to merge 2 commits into
Open
Preserve sections and notebook path when copying or bundling a course#342JimWallace wants to merge 2 commits into
JimWallace wants to merge 2 commits into
Conversation
Course copy (copyCourse) now: - Loads and recreates APICourseSection rows for the new course - Maps old→new section UUIDs so copied assignments land in the right section - Uses setup.notebookPath directly instead of reconstructing the path as setupsDir+id.ipynb, which failed for notebooks stored in the new-style notebooks/<id>/ subdirectory Bundle export/import (CourseBundleRoutes + CourseBundleManifest) now: - Adds BundledSection type and sections:[BundledSection]? to the manifest (optional for backward-compat with old bundles) - Adds sectionBundleID? to BundledAssignment - Export serialises sections and wires sectionBundleID on each assignment - Import creates sections first, then sets sectionID on assignments via the bundleID→UUID map New regression tests: - testCourseCopySectionsArePreserved - testCourseCopyNotebookPathIsPreserved - testRoundTripPreservesSections Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…-in-filter - Replace UUID?? vs UUID? XCTAssertEqual comparisons with explicit if-let unwrapping - Store requireID() result in a variable before using in filter() instead of calling try inside the filter DSL expression Co-Authored-By: Claude Sonnet 4.6 <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.
Course copy (copyCourse) now:
Bundle export/import (CourseBundleRoutes + CourseBundleManifest) now:
New regression tests: