challenger

OAuth 2.0-based authentication service that validates user can receive messages at a certain address
Log | Files | Refs | Submodules | README | LICENSE

commit ce4a10b2cf4aab41adb8fd4a76c0a428cdfba540
parent 5c3a0035b83570ba52076387f655e2a5d7a113c9
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon,  5 Feb 2024 11:52:45 +0100

return 'implementation' field in /config responses

Diffstat:
Msrc/challenger/challenger-httpd_config.c | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/challenger/challenger-httpd_config.c b/src/challenger/challenger-httpd_config.c @@ -40,10 +40,12 @@ CH_handler_config (struct CH_HandlerContext *hc, return TALER_MHD_REPLY_JSON_PACK ( hc->connection, MHD_HTTP_OK, + GNUNET_JSON_pack_string ("implementation", + "urn:net:taler:specs:challenger:c-reference"), GNUNET_JSON_pack_string ("name", "challenger"), GNUNET_JSON_pack_string ("version", - "0:0:0")); + "0:1:0")); }