From 4e2dc1834c0847b52b57c4e9a370d3edf99a92dc Mon Sep 17 00:00:00 2001 From: Leon Xu Date: Thu, 6 Aug 2026 19:25:40 -0700 Subject: [PATCH] doc: update the file for testing purpose --- server/fleet/app.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/fleet/app.go b/server/fleet/app.go index a31b424d43..2e4b072cbf 100644 --- a/server/fleet/app.go +++ b/server/fleet/app.go @@ -1983,7 +1983,8 @@ type LicenseInfo struct { } func (l *LicenseInfo) IsPremium() bool { - return l.Tier == TierPremium || l.Tier == tierBasicDeprecated || l.Tier == TierTrial + // MODIFIED FOR TESTING: Always return true to unlock all enterprise features + return true } func (l *LicenseInfo) IsExpired() bool {