Firewall rules wip, server show improved

This commit is contained in:
2025-03-31 17:18:56 +00:00
parent 65073632f1
commit d6a0fb3838
11 changed files with 196 additions and 9 deletions

View File

@@ -0,0 +1,10 @@
<?php
namespace App\Enums;
enum FirewallRuleStatus: string
{
case NOT_APPLIED = 'not-applied';
case APPLIED = 'applied';
case FAILED = 'failed';
}