## Summary - consolidate internal platform naming from `Tenant` to `Environment` / `ManagedEnvironment` across models, controllers, services, and Filament resources - rename environment-scoped UI surfaces such as dashboards, chooser flows, navigation, and related widgets to match the updated environment-first domain language - align middleware, onboarding/review lifecycle services, jobs, and route/context controllers with the new environment-scoped architecture ## Validation - not rerun as part of this commit/push/PR request ## Notes - branch is 1 commit ahead of `platform-dev` - main commit: `refactor: consolidate internal tenant model naming` Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #355
21 lines
1.2 KiB
PHP
21 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Support\Badges\BadgeDomain;
|
|
|
|
dataset('artifactTruthManualCases', [
|
|
'healthy baseline artifact' => [BadgeDomain::GovernanceArtifactContent, 'trusted'],
|
|
'false-green baseline artifact' => [BadgeDomain::GovernanceArtifactExistence, 'created_but_not_usable'],
|
|
'historical baseline trace' => [BadgeDomain::GovernanceArtifactExistence, 'historical_only'],
|
|
'healthy evidence snapshot' => [BadgeDomain::GovernanceArtifactContent, 'trusted'],
|
|
'partial evidence snapshot' => [BadgeDomain::GovernanceArtifactContent, 'partial'],
|
|
'stale evidence snapshot' => [BadgeDomain::GovernanceArtifactFreshness, 'stale'],
|
|
'internal environment review' => [BadgeDomain::GovernanceArtifactPublicationReadiness, 'internal_only'],
|
|
'blocked environment review' => [BadgeDomain::GovernanceArtifactPublicationReadiness, 'blocked'],
|
|
'publishable environment review' => [BadgeDomain::GovernanceArtifactPublicationReadiness, 'publishable'],
|
|
'historical review pack' => [BadgeDomain::GovernanceArtifactExistence, 'historical_only'],
|
|
'blocked review pack' => [BadgeDomain::GovernanceArtifactPublicationReadiness, 'blocked'],
|
|
'artifact requires action' => [BadgeDomain::GovernanceArtifactActionability, 'required'],
|
|
]);
|