Refactor approval queue to display last meaningful status #94
No reviewers
Labels
No Label
Priority
Critical
Priority
High
Priority
Low
Priority
Normal
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
Type
Breaking
Type
Documentation
Type
Enhancement
Type
Feature
Type
Report
Type
Security
Type
Suggestion
Type
Testing
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: infrastructure/extensions-website#94
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "approval-queue"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
See #89
rewriting approval queue page as a listing of all ApprovalActivity items across all extensions, grouped by extension, displaying a summary:
LGTM
@ -22,2 +28,2 @@
return Extension.objects.exclude(status=Extension.STATUSES.APPROVED).order_by(
'-date_created'
qs = (
ApprovalActivity.objects.prefetch_related(
For already existing extensions without activity records
ApprovalActivity
will have to be created (with theExtension.date_status_changed
dates asdate_created
) to ensure they still show up in the approval queue.running in shell
before
after