From 94de71140be2d0c80bf6a2e03cb9381b37736ed5 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Fri, 06 Feb 2026 17:03:02 +0000
Subject: [PATCH] =Some minor CRUD.js and UploadManager.js tweaks

---
 inc/rest/routes/UploadRoutes.php |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/inc/rest/routes/UploadRoutes.php b/inc/rest/routes/UploadRoutes.php
index f519fa7..04e5488 100644
--- a/inc/rest/routes/UploadRoutes.php
+++ b/inc/rest/routes/UploadRoutes.php
@@ -75,7 +75,9 @@
 
 		// Process upload groups into posts
 		$registry->register('process_upload_groups', new TypeConfig(
-			executor: $executor
+			executor: $executor,
+			chunkKey: 'posts',
+			chunkSize: 5
 		));
 	}
 
@@ -1137,7 +1139,8 @@
 				[
 					'operation_id' => $args['id'],
 					'depends_on' => [$args['upload']],
-					'priority' => 'high'
+					'priority' => 'high',
+					'chunk_key'	=> 'posts'
 				]
 			);
 

--
Gitblit v1.10.0