feat: add SupportEnrollmentDataRequested filter - #393
Open
brobro10000 wants to merge 1 commit into
Open
Conversation
This was referenced Sep 8, 2026
Draft
brobro10000
force-pushed
the
brobro10000/ENT-11574-enrollment
branch
3 times, most recently
from
September 9, 2026 16:50
b1af155 to
1d1fa1d
Compare
brobro10000
marked this pull request as ready for review
September 10, 2026 16:27
Codex Review SummaryThis comment shows the latest Codex review activity on this pull request.
ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
Codex reacts with 👀 while any review is running, comments if it has suggestions, and reacts with 👍 once all reviews finish with no findings. |
pwnage101
reviewed
Sep 10, 2026
pwnage101
reviewed
Sep 10, 2026
brobro10000
force-pushed
the
brobro10000/ENT-11574-enrollment
branch
from
September 10, 2026 18:01
1d1fa1d to
c0a3d1c
Compare
Adds a filter that lets pipeline steps inject enterprise enrollment data into the support enrollment lookup view. run_filter returns a tuple of all its inputs (enrollment_data, user), matching the convention used by every other filter in this module (per pwnage101's review feedback on the sibling SupportContactContextRequested filter in PR openedx#390). Includes unit tests. ENT-11574
brobro10000
force-pushed
the
brobro10000/ENT-11574-enrollment
branch
from
September 10, 2026 18:05
c0a3d1c to
4a1172e
Compare
Member
Author
|
@pwnage101 addressed both docstring suggestions in the latest commit — dropped the "with additional enrollment records" framing from the class summary, and reworded the Purpose paragraph to say pipeline steps can inject new records or augment existing ones, rather than implying additive-only enrichment. CI is green. |
Contributor
pwnage101
approved these changes
Sep 10, 2026
pwnage101
left a comment
Contributor
There was a problem hiding this comment.
LGTM, just simplify that commit message
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.

ENT-11574
Companion PR to the already-open support-contact-tag PR set (openedx-filters#390,
edx-enterprise#2688, openedx-platform#39076, edx-platform#455) — this one covers the
other half of ENT-11574's acceptance criteria: enterprise enrollment data for the support
enrollment view.
Adds
SupportEnrollmentDataRequested(org.openedx.learning.support.enrollment.data.requested.v1)— lets pipeline steps inject enterprise enrollment data into the support enrollment lookup.
Related PRs
openedx-platform#39076, edx-platform#455 (support-contact-tag)
Testing
New: unit tests for the filter class in
openedx_filters/learning/tests/test_filters.py,matching the existing per-filter-class test pattern.
Locally verified:
pytest openedx_filters/learning/tests/test_filters.py— 75 passed.mypyclean.
isort --check-onlyclean.Changelog / version
Bumped
__version__to3.11.0(3.10.0 already claimed by the sibling contact-tag PR) andadded a
CHANGELOG.rstentry, matching current practice.