Implements spec `099-alerts-v1-teams-email`. - Monitoring navigation: Alerts as a cluster under Monitoring; default landing is Alert deliveries. - Tenant panel: Alerts points to `/admin/alerts` and the cluster navigation is hidden in tenant panel. - Guard compliance: removes direct `Gate::` usage from Alert resources so `NoAdHocFilamentAuthPatternsTest` passes. Verification: - Full suite: `1348 passed, 7 skipped` (EXIT=0). Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #121
14 lines
305 B
PHP
14 lines
305 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Resources\AlertDeliveryResource\Pages;
|
|
|
|
use App\Filament\Resources\AlertDeliveryResource;
|
|
use Filament\Resources\Pages\ViewRecord;
|
|
|
|
class ViewAlertDelivery extends ViewRecord
|
|
{
|
|
protected static string $resource = AlertDeliveryResource::class;
|
|
}
|