github.com/kotalco/kotal@v0.3.0/controllers/shared/webhook.go (about) 1 package shared 2 3 import "os" 4 5 // IsWebhookEnabled checks if webhooks are enabled 6 func IsWebhookEnabled() bool { 7 return os.Getenv("ENABLE_WEBHOOKS") != "false" 8 }