Mercurial > prosody-modules
comparison mod_http_oauth2/mod_http_oauth2.lua @ 5560:697d799fe601
mod_http_oauth2: Strip JWKS metadata since we do not understand that
Maybe one day whatever this is will be understood, but not this day!
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 20 Jun 2023 01:13:51 +0200 |
parents | d7fb8b266663 |
children | feadbd481285 |
comparison
equal
deleted
inserted
replaced
5559:d7fb8b266663 | 5560:697d799fe601 |
---|---|
932 logo_uri = { type = "string"; format = "uri"; pattern = "^https:" }; | 932 logo_uri = { type = "string"; format = "uri"; pattern = "^https:" }; |
933 scope = { type = "string" }; | 933 scope = { type = "string" }; |
934 contacts = { type = "array"; minItems = 1; items = { type = "string"; format = "email" } }; | 934 contacts = { type = "array"; minItems = 1; items = { type = "string"; format = "email" } }; |
935 tos_uri = { type = "string"; format = "uri"; pattern = "^https:" }; | 935 tos_uri = { type = "string"; format = "uri"; pattern = "^https:" }; |
936 policy_uri = { type = "string"; format = "uri"; pattern = "^https:" }; | 936 policy_uri = { type = "string"; format = "uri"; pattern = "^https:" }; |
937 jwks_uri = { type = "string"; format = "uri"; pattern = "^https:" }; | |
938 jwks = { type = "object"; description = "JSON Web Key Set, RFC 7517" }; | |
939 software_id = { type = "string"; format = "uuid" }; | 937 software_id = { type = "string"; format = "uuid" }; |
940 software_version = { type = "string" }; | 938 software_version = { type = "string" }; |
941 }; | 939 }; |
942 } | 940 } |
943 | 941 |