Drop one-shot tmp/axe scripts and agent i18n scratch so the Gitea tree is deployable.
13 lines
202 B
Go
13 lines
202 B
Go
package platformsettings
|
|
|
|
import "strings"
|
|
|
|
func parseTruthy(v string) bool {
|
|
switch strings.ToLower(strings.TrimSpace(v)) {
|
|
case "1", "true", "yes", "on":
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|