From 85d4c40ccb11bbe20858a85384a5553394b80d5c Mon Sep 17 00:00:00 2001 From: mrhid6 Date: Mon, 24 Aug 2026 14:00:00 +0000 Subject: [PATCH] feat: status page schema, licence feature and indexes --- license/license.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/license/license.go b/license/license.go index bffb278..651bd92 100644 --- a/license/license.go +++ b/license/license.go @@ -35,6 +35,11 @@ const ( // findings themselves. The gate is at collection, not display: an ungated // instance stores no inventory, and storage is the expensive half. FeatureVulnScanning = "vuln_scanning" + // FeatureStatusPages gates public status pages at both ends: authoring + // them, and serving them. Serving answers 200 with available:false rather + // than 403, because the page has to render an explanation to a member of + // the public who cannot do anything about it. + FeatureStatusPages = "status_pages" ) // Support levels. Carried for display and enforced by nothing — there is no code