changeset 5453:7dc429b7c3f3

mod_http_oauth2: Fix schema to enforce at least one redirect URI minLength is for strings
author Kim Alvefur <zash@zash.se>
date Tue, 16 May 2023 20:56:57 +0200
parents b071d8ee6555
children 6970c73711c2
files mod_http_oauth2/mod_http_oauth2.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mod_http_oauth2/mod_http_oauth2.lua	Fri May 12 11:58:20 2023 +0200
+++ b/mod_http_oauth2/mod_http_oauth2.lua	Tue May 16 20:56:57 2023 +0200
@@ -754,7 +754,7 @@
 		"redirect_uris";
 	};
 	properties = {
-		redirect_uris = { type = "array"; minLength = 1; items = { type = "string"; format = "uri" } };
+		redirect_uris = { type = "array"; minItems = 1; items = { type = "string"; format = "uri" } };
 		token_endpoint_auth_method = {
 			type = "string";
 			enum = { "none"; "client_secret_post"; "client_secret_basic" };