Feature request: filter the content list by pending changes (published entries with divergent drafts) #2999
juliatetrud
started this conversation in
Ideas
Replies: 1 comment
|
Converted this to a discussion as it is a feature request. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Version: 0.33.0.
The content list badges rows with "Pending changes" (draft revision differs from live), but the status filter can only express Published/Draft/Scheduled/Archived — there is no way to surface all published entries with unpublished edits at once, which is the review queue an editor actually wants before a publish pass.
Suggestion: a "Pending changes" option in the status filter (server-side:
live_revision_id IS NOT NULL AND draft_revision_id IS NOT NULL AND draft_revision_id != live_revision_id, i.e. the same condition asgetDraftStatus() === "published_with_changes"), or a sortable pending-changes column. The list query schema already typesstatusas an open string, so a virtual status token slots in cleanly — we're running exactly that as a local patch (repo + list FilterBar) and happy to PR it.All reactions