-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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: Upstream Sync with Content Library Blocks #34925
Merged
kdmccormick
merged 1 commit into
openedx:master
from
kdmccormick:kdmccormick/upstream-proto
Oct 17, 2024
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,31 @@ | ||
"""Contenstore API v2 URLs.""" | ||
|
||
from django.urls import path | ||
|
||
from cms.djangoapps.contentstore.rest_api.v2.views import HomePageCoursesViewV2 | ||
from django.conf import settings | ||
from django.urls import path, re_path | ||
|
||
from cms.djangoapps.contentstore.rest_api.v2.views import home, downstreams | ||
app_name = "v2" | ||
|
||
urlpatterns = [ | ||
path( | ||
"home/courses", | ||
HomePageCoursesViewV2.as_view(), | ||
home.HomePageCoursesViewV2.as_view(), | ||
name="courses", | ||
), | ||
# TODO: Potential future path. | ||
# re_path( | ||
# fr'^downstreams/$', | ||
# downstreams.DownstreamsListView.as_view(), | ||
# name="downstreams_list", | ||
# ), | ||
re_path( | ||
fr'^downstreams/{settings.USAGE_KEY_PATTERN}$', | ||
downstreams.DownstreamView.as_view(), | ||
name="downstream" | ||
), | ||
re_path( | ||
fr'^downstreams/{settings.USAGE_KEY_PATTERN}/sync$', | ||
downstreams.SyncFromUpstreamView.as_view(), | ||
name="sync_from_upstream" | ||
), | ||
] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +0,0 @@ | ||
"""Module for v2 views.""" | ||
|
||
from cms.djangoapps.contentstore.rest_api.v2.views.home import HomePageCoursesViewV2 | ||
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
At some point, we'd like to be able to give an upstream ID and get the list of all its downstreams. I'm assuming we'll need some kind of new data model to track that before we're able to implement something like that in the future, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep. Indeed, we'll need something like a
DownstreamUpstreamLink
table, which the upstream_sync API writes to and keeps updated.