Add acting_capacity field to ReviewRequest#5700
Merged
suhaibmujahid merged 1 commit intomozilla:masterfrom Feb 19, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Adds an optional acting_capacity attribute to ReviewRequest so the Review Helper API can record the role (e.g., author/reviewer/participant) associated with a review request.
Changes:
- Extend the
ReviewRequestCreateschema with an optionalacting_capacity. - Add
acting_capacityto theReviewRequestSQLAlchemy model. - Add an Alembic migration to add the
acting_capacitycolumn to thereview_requeststable.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
services/reviewhelper-api/app/schemas/review_request.py |
Accepts acting_capacity on create requests. |
services/reviewhelper-api/app/database/models.py |
Persists acting_capacity on the ReviewRequest ORM model. |
services/reviewhelper-api/alembic/versions/53f024d8e601_add_acting_capacity_field_to_.py |
Adds nullable acting_capacity column via migration. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
ee87bfc to
ac80ba4
Compare
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.
Follow up on #5684