mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
feat(jobs): add ProcessingQueue enum
This commit is contained in:
parent
124957fe94
commit
907be7d562
2 changed files with 18 additions and 0 deletions
18
app/Enums/ProcessingQueue.php
Normal file
18
app/Enums/ProcessingQueue.php
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum ProcessingQueue: string
|
||||
{
|
||||
case Default = 'default';
|
||||
case High = 'high';
|
||||
case StandardDeployment = 'standard-deployment';
|
||||
case ProductionDeployment = 'production-deployment';
|
||||
|
||||
case WorkerDefault = 'worker-default';
|
||||
case WorkerHigh = 'worker-high';
|
||||
case WorkerStandardDeployment = 'worker-standard-deployment';
|
||||
case WorkerProductionDeployment = 'worker-production-deployment';
|
||||
}
|
||||
Loading…
Reference in a new issue