-
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: Export ID on Taxonomy #34143
feat: Export ID on Taxonomy #34143
Conversation
Thanks for the pull request, @ChrisChV! Please note that it may take us up to several weeks or months to complete a review and merge your PR. Feel free to add as much of the following information to the ticket as you can:
All technical communication about the code itself will be done via the GitHub pull request interface. As a reminder, our process documentation is here. Please let us know once your PR is ready for our review and all tests are green. |
requirements/edx/kernel.in
Outdated
@@ -117,7 +117,7 @@ openedx-calc # Library supporting mathematical calculatio | |||
openedx-django-require | |||
openedx-events # Open edX Events from Hooks Extension Framework (OEP-50) | |||
openedx-filters # Open edX Filters from Hooks Extension Framework (OEP-50) | |||
openedx-learning # Open edX Learning core (experimental) | |||
git+https://github.com/open-craft/openedx-learning.git@chris/FAL-3620-export-id-on-taxonomies#egg=openedx-learning # Open edX Learning core (experimental) |
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.
TODO: Bump version with openedx/openedx-learning#145
3a1fa92
to
bb1d9c4
Compare
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.
@ChrisChV One nit, but 👍 once that's addressed.
- I tested this using the PR test instructions
- I read through the code
- I checked for accessibility issues by using my keyboard only during testing.
- Includes documentation
-
User-facing strings are extracted for translationN/A
@@ -174,19 +176,35 @@ def _setUp_taxonomies(self): | |||
Create taxonomies for testing | |||
""" | |||
# Orphaned taxonomy | |||
self.ot1 = Taxonomy.objects.create(name="ot1", enabled=True) | |||
self.ot2 = Taxonomy.objects.create(name="ot2", enabled=False) | |||
self.ot1 = Taxonomy.objects.create( |
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.
Could you please use the create_taxonomy
API method to create these taxonomies?
Looks fine so far. I can approve and merge next week if the openedx-learning one is merged tomorrow. |
@ChrisChV 🎉 Your pull request was merged! Please take a moment to answer a two question survey so we can improve your experience in the future. |
2U Release Notice: This PR has been deployed to the edX staging environment in preparation for a release to production. |
2U Release Notice: This PR has been deployed to the edX production environment. |
1 similar comment
2U Release Notice: This PR has been deployed to the edX production environment. |
2U Release Notice: This PR has been deployed to the edX staging environment in preparation for a release to production. |
2U Release Notice: This PR has been deployed to the edX production environment. |
Description
This adds the changes to support the new
export_Id
field onTaxonomy
.Supporting information
Testing instructions
make requirements
on cms shell to install the version of openedx-learning that useexport_id
.make migrate
on cms shell.Other information