From 96c5c79aefcc6ec95ec7d09b9fffbf161053108c Mon Sep 17 00:00:00 2001 From: Kyle Klaus Date: Sat, 9 May 2020 09:31:58 -0700 Subject: [PATCH] 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 --- backend/schema/endpoints/access-lists.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/schema/endpoints/access-lists.json b/backend/schema/endpoints/access-lists.json index b1a91d0..646306b 100644 --- a/backend/schema/endpoints/access-lists.json +++ b/backend/schema/endpoints/access-lists.json @@ -35,7 +35,7 @@ }, { "type": "string", - "pattern": "^any$" + "pattern": "^all$" } ] },