fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

1package tenant 2 3import ( 4 "github.com/sourcegraph/zoekt/internal/tenant/internal/enforcement" 5) 6 7func EnforceTenant() bool { 8 switch enforcement.EnforcementMode.Load() { 9 case "strict": 10 return true 11 default: 12 return false 13 } 14}