From be37e58a70025fd646a5e0ed902594c0e666f4a2 Mon Sep 17 00:00:00 2001 From: Christina Lin <44586776+chrstinalin@users.noreply.github.com> Date: Thu, 9 Jan 2025 13:41:12 -0500 Subject: [PATCH] versions --- src/olympia/versions/models.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/olympia/versions/models.py b/src/olympia/versions/models.py index 107abe00c55..d6e76deaf82 100644 --- a/src/olympia/versions/models.py +++ b/src/olympia/versions/models.py @@ -223,7 +223,10 @@ def get_due_date_reason_q_objects(cls): # date even if the version has been disabled / not signed. 'needs_human_review_from_cinder': Q( needshumanreview__is_active=True, - needshumanreview__reason=NeedsHumanReview.REASONS.CINDER_ESCALATION, + needshumanreview__reason__in={ + NeedsHumanReview.REASONS.CINDER_ESCALATION, + NeedsHumanReview.REASONS.CINDER_APPEAL_ESCALATION, + }, ), 'needs_human_review_from_abuse': Q( needshumanreview__is_active=True, @@ -257,6 +260,7 @@ def get_due_date_reason_q_objects(cls): needshumanreview__reason__in=( NeedsHumanReview.REASONS.ABUSE_ADDON_VIOLATION.value, NeedsHumanReview.REASONS.CINDER_ESCALATION.value, + NeedsHumanReview.REASONS.CINDER_APPEAL_ESCALATION.value, NeedsHumanReview.REASONS.ADDON_REVIEW_APPEAL.value, NeedsHumanReview.REASONS.BELONGS_TO_PROMOTED_GROUP.value, NeedsHumanReview.REASONS.ADDED_TO_PROMOTED_GROUP.value,