TenantAtlas/app/Support/Navigation/NavigationMatrixRule.php
ahmido b15d1950b4 feat: add cross-resource navigation cohesion (#160)
## Summary
- add a shared cross-resource navigation layer with canonical navigation context and related-context rendering
- wire findings, policy versions, baseline snapshots, backup sets, and canonical operations surfaces into consistent drill-down flows
- extend focused Pest coverage for canonical operations links, related navigation, and tenant-context preservation

## Testing
- focused Pest coverage for spec 131 was added and the task list marks the implementation verification and Pint steps as completed

## Follow-up
- manual QA checklist item `T036` in `specs/131-cross-resource-navigation/tasks.md` is still open and should be completed during review

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #160
2026-03-10 16:08:14 +00:00

20 lines
470 B
PHP

<?php
declare(strict_types=1);
namespace App\Support\Navigation;
final readonly class NavigationMatrixRule
{
public function __construct(
public string $sourceType,
public string $sourceSurface,
public string $relationKey,
public string $targetType,
public string $targetMode,
public int $priority,
public bool $requiresCapabilityCheck = true,
public string $missingStatePolicy = 'hide',
) {}
}