T003-T018b: Add workspace_baselines.view/manage capabilities, role mappings, baseline_capture/baseline_compare operation labels, severity summary keys, 5 migrations, 4 models, 4 factories, BaselineScope, BaselineReasonCodes, BaselineProfileStatus badge domain + mapper.
33 lines
669 B
PHP
33 lines
669 B
PHP
<?php
|
|
|
|
namespace App\Support\OpsUx;
|
|
|
|
class OperationSummaryKeys
|
|
{
|
|
/**
|
|
* Return the canonical allowed summary keys used for Ops-UX rendering.
|
|
* Keep ordering stable to make guard tests deterministic.
|
|
*/
|
|
public static function all(): array
|
|
{
|
|
return [
|
|
'total',
|
|
'processed',
|
|
'succeeded',
|
|
'failed',
|
|
'skipped',
|
|
'compliant',
|
|
'noncompliant',
|
|
'unknown',
|
|
'created',
|
|
'updated',
|
|
'deleted',
|
|
'items',
|
|
'tenants',
|
|
'high',
|
|
'medium',
|
|
'low',
|
|
];
|
|
}
|
|
}
|