diff options
Diffstat (limited to 'src/exchange/taler-exchange-httpd.c')
| -rw-r--r-- | src/exchange/taler-exchange-httpd.c | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c index 0c5d36e0..e2115407 100644 --- a/src/exchange/taler-exchange-httpd.c +++ b/src/exchange/taler-exchange-httpd.c @@ -34,6 +34,7 @@  #include "taler-exchange-httpd_auditors.h"  #include "taler-exchange-httpd_batch-deposit.h"  #include "taler-exchange-httpd_batch-withdraw.h" +#include "taler-exchange-httpd_config.h"  #include "taler-exchange-httpd_contract.h"  #include "taler-exchange-httpd_csr.h"  #include "taler-exchange-httpd_deposit.h" @@ -1371,6 +1372,12 @@ handle_mhd_request (void *cls,        .method = MHD_HTTP_METHOD_GET,        .handler.get = &handler_seed      }, +    /* Configuration */ +    { +      .url = "config", +      .method = MHD_HTTP_METHOD_GET, +      .handler.get = &TEH_handler_config +    },      /* Performance metrics */      {        .url = "metrics",  | 
