Make apiAllowedIPs optional

If our test and production instance just use *, one might as well make
that the default value. This should ease configuration for minimal
setups.
This commit is contained in:
Michael Panzlaff
2026-01-15 15:58:14 +01:00
parent 7db2bbe6b0
commit 489ad44b9f
2 changed files with 5 additions and 6 deletions

View File

@@ -6,7 +6,7 @@
package config
var configSchema = `
{
{
"type": "object",
"properties": {
"addr": {
@@ -135,6 +135,5 @@ var configSchema = `
},
"required": ["subjectJobEvent", "subjectNodeState"]
}
},
"required": ["apiAllowedIPs"]
}`
}
}`