commit 0d4f84de8fb328983a38dd6672504f90609a59dc
parent 4778b1483841cfe956d70813b5aaffd680203469
Author: Christian Grothoff <christian@grothoff.org>
Date: Fri, 12 Jun 2020 10:39:53 +0200
enable handler
Diffstat:
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/src/backend/taler-merchant-httpd.c b/src/backend/taler-merchant-httpd.c
@@ -39,7 +39,7 @@
#include "taler-merchant-httpd_private-get-products.h"
#include "taler-merchant-httpd_private-get-products-ID.h"
#include "taler-merchant-httpd_private-get-orders.h"
-// #include "taler-merchant-httpd_private-get-orders-ID.h"
+#include "taler-merchant-httpd_private-get-orders-ID.h"
#include "taler-merchant-httpd_private-get-reserves.h"
#include "taler-merchant-httpd_private-get-reserves-ID.h"
#include "taler-merchant-httpd_private-get-tips-ID.h"
@@ -834,6 +834,13 @@ url_handler (void *cls,
.method = MHD_HTTP_METHOD_POST,
.handler = &TMH_private_post_orders
},
+ /* GET /orders/$ID: */
+ {
+ .url_prefix = "/orders/",
+ .method = MHD_HTTP_METHOD_GET,
+ .have_id_segment = true,
+ .handler = &TMH_private_get_orders_ID
+ },
/* POST /orders/$ID/refund: */
{
.url_prefix = "/orders/",