We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20bdc07 commit cfbecf9Copy full SHA for cfbecf9
contivModel.go
@@ -2318,7 +2318,7 @@ func ValidateRule(obj *Rule) error {
2318
2319
// Validate each field
2320
2321
- actionMatch := regexp.MustCompile("^(accept|deny)$")
+ actionMatch := regexp.MustCompile("^(allow|deny)$")
2322
if actionMatch.MatchString(obj.Action) == false {
2323
return errors.New("action string invalid format")
2324
}
rule.json
@@ -95,7 +95,7 @@
95
},
96
"action": {
97
"type": "string",
98
- "format": "^(accept|deny)$",
+ "format": "^(allow|deny)$",
99
"title": "Action",
100
"showSummary": true
101
0 commit comments