Skip to content

Commit cfbecf9

Browse files
committed
rename 'accept' action to 'allow'
1 parent 20bdc07 commit cfbecf9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contivModel.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2318,7 +2318,7 @@ func ValidateRule(obj *Rule) error {
23182318

23192319
// Validate each field
23202320

2321-
actionMatch := regexp.MustCompile("^(accept|deny)$")
2321+
actionMatch := regexp.MustCompile("^(allow|deny)$")
23222322
if actionMatch.MatchString(obj.Action) == false {
23232323
return errors.New("action string invalid format")
23242324
}

rule.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
},
9696
"action": {
9797
"type": "string",
98-
"format": "^(accept|deny)$",
98+
"format": "^(allow|deny)$",
9999
"title": "Action",
100100
"showSummary": true
101101
}

0 commit comments

Comments
 (0)