diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-02-02 11:40:44 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-02-02 11:40:44 +0100 |
commit | 915542e69c5a481b8885661171880446d4ef009d (patch) | |
tree | cf05a85359ee9074ec81ba5791c399ee3749853d /src/exchange/taler-exchange-httpd.c | |
parent | f8ff9c996f2fbdde9110b473bee39ea173d2b40f (diff) |
first draft of implementation of GET AML decisions endpoint
Diffstat (limited to 'src/exchange/taler-exchange-httpd.c')
-rw-r--r-- | src/exchange/taler-exchange-httpd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c index 7f49955d..11b2d35f 100644 --- a/src/exchange/taler-exchange-httpd.c +++ b/src/exchange/taler-exchange-httpd.c @@ -446,14 +446,14 @@ handle_get_aml (struct TEH_RequestContext *rc, AmlOpGetHandler handler; } h[] = { -#if FIXME_AML_GET_DECISIONS_NOT_IMPLEMENTED { .op = "decisions", - .handler = &TEH_handler_get_aml_decisions + .handler = &TEH_handler_aml_decisions_get }, +#if FIXME_AML_GET_DECISIONS_NOT_IMPLEMENTED { .op = "decision", - .handler = &TEH_handler_get_aml_decision + .handler = &TEH_handler_aml_decision_get }, #endif { |