π React to this issue if you need this feature β helps us prioritise.
Problem
GitLab 17.1 added the marked_for_deletion_on=YYYY-MM-DD filter on GET /projects, allowing admins to list projects scheduled for purge on a specific date. Useful for last-minute restore campaigns. Currently we can't filter listed projects by deletion date.
Investigation done (current state)
Verified against src/entities/:
Re-verify before coding:
grep -rn 'marked_for_deletion' src/
Acceptance criteria
GitLab API
Estimate
1h
Context
Found during GitLab 18β19 API landscape analysis.
π React to this issue if you need this feature β helps us prioritise.
Problem
GitLab 17.1 added the
marked_for_deletion_on=YYYY-MM-DDfilter onGET /projects, allowing admins to list projects scheduled for purge on a specific date. Useful for last-minute restore campaigns. Currently we can't filter listed projects by deletion date.Investigation done (current state)
Verified against
src/entities/:entities/shared.ts:83-84already parsesmarked_for_deletion_atandmarked_for_deletion_onfields on project responseRe-verify before coding:
grep -rn 'marked_for_deletion' src/Acceptance criteria
markedForDeletionOn?: string(ISO date YYYY-MM-DD) param on browse_projects list actioninclude_pending_delete=truefrom feat(projects): browse_projects action 'list_deleted' for soft-deleted projectsΒ #431GitLab API
GET /api/v4/projects?marked_for_deletion_on=YYYY-MM-DD(combined withinclude_pending_delete=true)Estimate
1h
Context
Found during GitLab 18β19 API landscape analysis.