diff options
author | Christian Grothoff <grothoff@gnunet.org> | 2023-09-01 14:43:42 +0200 |
---|---|---|
committer | Christian Grothoff <grothoff@gnunet.org> | 2023-09-01 14:43:42 +0200 |
commit | 475dc825c6ed9084d15a8eee802c4c43e4b249b5 (patch) | |
tree | 5418beae127aad0311cff568328289c3ca75ab4a /src | |
parent | 35dcd4514a93ba0f5353ecd1194fc9b515f2aad4 (diff) |
-fix paths
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/taler-merchant-httpd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/taler-merchant-httpd.c b/src/backend/taler-merchant-httpd.c index 9c543958..68a81947 100644 --- a/src/backend/taler-merchant-httpd.c +++ b/src/backend/taler-merchant-httpd.c @@ -1199,14 +1199,14 @@ url_handler (void *cls, }, /* GET /accounts/$H_WIRE: */ { - .url_prefix = "/accounts", + .url_prefix = "/accounts/", .method = MHD_HTTP_METHOD_GET, .have_id_segment = true, .handler = &TMH_private_get_accounts_ID }, /* DELETE /accounts/$H_WIRE: */ { - .url_prefix = "/accounts", + .url_prefix = "/accounts/", .method = MHD_HTTP_METHOD_DELETE, .handler = &TMH_private_delete_account_ID, .have_id_segment = true |