## Summary - introduce the Provider Connection Filament resource (list/create/edit) with DB-only controls, grouped action dropdowns, and badge-driven status/health rendering - wire up the provider foundation stack (migrations, models, policies, providers, operations, badges, and audits) plus the required spec docs/checklists - standardize Inventory Sync notifications so the job no longer writes its own DB rows; terminal notifications now flow exclusively through OperationRunCompleted while the start surface still shows the queued toast ## Testing - ./vendor/bin/sail php ./vendor/bin/pint --dirty - ./vendor/bin/sail artisan test tests/Unit/Badges/ProviderConnectionBadgesTest.php - ./vendor/bin/sail artisan test tests/Feature/ProviderConnections tests/Feature/Filament/ProviderConnectionsDbOnlyTest.php - ./vendor/bin/sail artisan test tests/Feature/Inventory/RunInventorySyncJobTest.php tests/Feature/Inventory/InventorySyncStartSurfaceTest.php Co-authored-by: Ahmed Darrazi <ahmeddarrazi@MacBookPro.fritz.box> Reviewed-on: #73
32 lines
1.3 KiB
PHP
32 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Support\Badges;
|
|
|
|
enum BadgeDomain: string
|
|
{
|
|
case OperationRunStatus = 'operation_run_status';
|
|
case OperationRunOutcome = 'operation_run_outcome';
|
|
case InventorySyncRunStatus = 'inventory_sync_run_status';
|
|
case BackupScheduleRunStatus = 'backup_schedule_run_status';
|
|
case BackupSetStatus = 'backup_set_status';
|
|
case EntraGroupSyncRunStatus = 'entra_group_sync_run_status';
|
|
case RestoreRunStatus = 'restore_run_status';
|
|
case RestoreCheckSeverity = 'restore_check_severity';
|
|
case FindingStatus = 'finding_status';
|
|
case FindingSeverity = 'finding_severity';
|
|
case BooleanEnabled = 'boolean_enabled';
|
|
case BooleanHasErrors = 'boolean_has_errors';
|
|
case TenantStatus = 'tenant_status';
|
|
case TenantAppStatus = 'tenant_app_status';
|
|
case TenantRbacStatus = 'tenant_rbac_status';
|
|
case TenantPermissionStatus = 'tenant_permission_status';
|
|
case PolicySnapshotMode = 'policy_snapshot_mode';
|
|
case PolicyRestoreMode = 'policy_restore_mode';
|
|
case PolicyRisk = 'policy_risk';
|
|
case IgnoredAt = 'ignored_at';
|
|
case RestorePreviewDecision = 'restore_preview_decision';
|
|
case RestoreResultStatus = 'restore_result_status';
|
|
case ProviderConnectionStatus = 'provider_connection.status';
|
|
case ProviderConnectionHealth = 'provider_connection.health';
|
|
}
|