mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-01-23 13:18:14 -05:00
18 lines
301 B
Go
18 lines
301 B
Go
package schema
|
|
|
|
import "fmt"
|
|
|
|
// UpdateAccessList is the schema for incoming data validation
|
|
func UpdateAccessList() string {
|
|
return fmt.Sprintf(`
|
|
{
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"minProperties": 1,
|
|
"properties": {
|
|
"name": %s
|
|
}
|
|
}
|
|
`, stringMinMax(2, 100))
|
|
}
|