1
0
mirror of https://github.com/NginxProxyManager/nginx-proxy-manager.git synced 2025-04-28 17:47:46 +03:00

18 lines
283 B
Go

package schema
import "fmt"
// UpdateSetting is the schema for incoming data validation
func UpdateSetting() string {
return fmt.Sprintf(`
{
"type": "object",
"additionalProperties": false,
"minProperties": 1,
"properties": {
"value": %s
}
}
`, anyType)
}