mirror of
https://github.com/coollabsio/coolify.git
synced 2026-08-24 02:24:11 -05:00
Move V5 source, migrations, UI, scripts, and tests into documentation, then remove V5 routes, models, jobs, configuration, dependencies, and application hooks.
16 lines
280 B
Plaintext
16 lines
280 B
Plaintext
<?php
|
|
|
|
namespace App\Enums\V5;
|
|
|
|
/**
|
|
* Lifecycle states persisted on `v5_servers.status`.
|
|
*/
|
|
enum ServerStatus: string
|
|
{
|
|
case Added = 'added';
|
|
case Installed = 'installed';
|
|
case Failed = 'failed';
|
|
case Unreachable = 'unreachable';
|
|
case Unknown = 'unknown';
|
|
}
|