diff --git a/config/queue.php b/config/queue.php index c5029a5baa..4279385587 100644 --- a/config/queue.php +++ b/config/queue.php @@ -90,6 +90,21 @@ 'table' => 'failed_jobs', ], + /* + |-------------------------------------------------------------------------- + | Queue Batching + |-------------------------------------------------------------------------- + | + | These options configure the behavior of queue batching. The batching + | feature allows you to batch multiple jobs together for processing. + | + */ + + 'batching' => [ + 'database' => env('DB_CONNECTION', 'processmaker'), + 'table' => 'job_batches', + ], + /* |-------------------------------------------------------------------------- | Tenant Job Tracking diff --git a/routes/api.php b/routes/api.php index 2b3ffc38bb..dedc8dbce4 100644 --- a/routes/api.php +++ b/routes/api.php @@ -448,8 +448,5 @@ // Put these last to avoid conflicts with the other devlink routes Route::get('devlink/{devLink}', [DevLinkController::class, 'show'])->name('devlink.show'); }); - - // Slack Connector Validation - Route::post('connector-slack/validate-token', [ProcessMaker\Packages\Connectors\Slack\Controllers\SlackController::class, 'validateToken'])->name('connector-slack.validate-token'); }); Route::post('devlink/bundle-updated/{bundle}/{token}', [DevLinkController::class, 'bundleUpdated'])->name('devlink.bundle-updated');