Skip to content

Commit 96c5c79

Browse files
authored
Fix address validation rule to allow 'all' keyword
The rule was looking for the keyword 'any' but should have been looking for 'all' http://nginx.org/en/docs/http/ngx_http_access_module.html
1 parent 64922f0 commit 96c5c79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/schema/endpoints/access-lists.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
},
3636
{
3737
"type": "string",
38-
"pattern": "^any$"
38+
"pattern": "^all$"
3939
}
4040
]
4141
},

0 commit comments

Comments
 (0)