Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions config/queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 0 additions & 3 deletions routes/api.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');