# HG changeset patch # User Kim Alvefur # Date 1682615663 -7200 # Node ID ca477408f90bf8e23bfa874efd5d0952f7895003 # Parent ad6e9b0fd15bff40cc0fa3353c46c7be6ce098cd mod_http_oauth2: Fix misplaced 'default' on wrong side of } in client registration schema diff -r ad6e9b0fd15b -r ca477408f90b mod_http_oauth2/mod_http_oauth2.lua --- a/mod_http_oauth2/mod_http_oauth2.lua Thu Apr 27 16:58:48 2023 +0100 +++ b/mod_http_oauth2/mod_http_oauth2.lua Thu Apr 27 19:14:23 2023 +0200 @@ -640,7 +640,11 @@ }; properties = { redirect_uris = { type = "array"; minLength = 1; items = { type = "string"; format = "uri" } }; - token_endpoint_auth_method = { type = "string"; enum = { "none"; "client_secret_post"; "client_secret_basic"; default = "client_secret_basic" } }; + token_endpoint_auth_method = { + type = "string"; + enum = { "none"; "client_secret_post"; "client_secret_basic" }; + default = "client_secret_basic"; + }; grant_types = { type = "array"; items = {