feat(ISP config web and webhost imports)
All checks were successful
Deploy Roxane to Preprod / deploy (push) Successful in 43s

This commit is contained in:
2025-12-31 11:21:20 +01:00
parent 54f056ca5f
commit fb6c62f19c
11 changed files with 704 additions and 147 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Enums;
enum IspconfigType: string
{
case MAIL = 'mail';
case WEB = 'web';
case OTHER = 'other';
public function label(): string
{
return match ($this) {
self::MAIL => 'Email',
self::WEB => 'Hébergement',
self::OTHER => 'Autre',
};
}
}