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 {