diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-04-24 20:32:10 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-04-24 20:32:10 +0200 |
commit | 6548cc691d8c9fb443a46e12b10de922b6581f97 (patch) | |
tree | 849154677d3740d7e02489e63018ba7a18ef843d /src/lib | |
parent | a376e29ef856bf2baf00ea0c871f9f852c2273bc (diff) |
fix tests
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/merchant_api_delete_instance.c | 2 | ||||
-rw-r--r-- | src/lib/merchant_api_delete_product.c | 2 | ||||
-rw-r--r-- | src/lib/merchant_api_get_instance.c | 2 | ||||
-rw-r--r-- | src/lib/merchant_api_get_instances.c | 2 | ||||
-rw-r--r-- | src/lib/merchant_api_get_product.c | 2 | ||||
-rw-r--r-- | src/lib/merchant_api_get_products.c | 2 | ||||
-rw-r--r-- | src/lib/merchant_api_lock_product.c | 2 | ||||
-rw-r--r-- | src/lib/merchant_api_patch_instance.c | 2 | ||||
-rw-r--r-- | src/lib/merchant_api_patch_product.c | 2 | ||||
-rw-r--r-- | src/lib/merchant_api_post_instances.c | 2 | ||||
-rw-r--r-- | src/lib/merchant_api_post_products.c | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/src/lib/merchant_api_delete_instance.c b/src/lib/merchant_api_delete_instance.c index 01852c45..edf73f87 100644 --- a/src/lib/merchant_api_delete_instance.c +++ b/src/lib/merchant_api_delete_instance.c @@ -139,7 +139,7 @@ instance_delete (struct GNUNET_CURL_Context *ctx, char *path; GNUNET_asprintf (&path, - "instances/%s", + "private/instances/%s", instance_id); if (purge) idh->url = TALER_url_join (backend_url, diff --git a/src/lib/merchant_api_delete_product.c b/src/lib/merchant_api_delete_product.c index e406581c..88607b42 100644 --- a/src/lib/merchant_api_delete_product.c +++ b/src/lib/merchant_api_delete_product.c @@ -144,7 +144,7 @@ TALER_MERCHANT_product_delete ( char *path; GNUNET_asprintf (&path, - "products/%s", + "private/products/%s", product_id); pdh->url = TALER_url_join (backend_url, path, diff --git a/src/lib/merchant_api_get_instance.c b/src/lib/merchant_api_get_instance.c index 6499a6e5..98e7f146 100644 --- a/src/lib/merchant_api_get_instance.c +++ b/src/lib/merchant_api_get_instance.c @@ -244,7 +244,7 @@ TALER_MERCHANT_instance_get (struct GNUNET_CURL_Context *ctx, char *path; GNUNET_asprintf (&path, - "instances/%s", + "private/instances/%s", instance_id); igh->url = TALER_url_join (backend_url, path, diff --git a/src/lib/merchant_api_get_instances.c b/src/lib/merchant_api_get_instances.c index 830e9b5f..0ad33faa 100644 --- a/src/lib/merchant_api_get_instances.c +++ b/src/lib/merchant_api_get_instances.c @@ -249,7 +249,7 @@ TALER_MERCHANT_instances_get (struct GNUNET_CURL_Context *ctx, igh->cb = instances_cb; igh->cb_cls = instances_cb_cls; igh->url = TALER_url_join (backend_url, - "instances", + "private/instances", NULL); if (NULL == igh->url) { diff --git a/src/lib/merchant_api_get_product.c b/src/lib/merchant_api_get_product.c index fc33dedf..0388c793 100644 --- a/src/lib/merchant_api_get_product.c +++ b/src/lib/merchant_api_get_product.c @@ -212,7 +212,7 @@ TALER_MERCHANT_product_get ( char *path; GNUNET_asprintf (&path, - "products/%s", + "private/products/%s", product_id); pgh->url = TALER_url_join (backend_url, path, diff --git a/src/lib/merchant_api_get_products.c b/src/lib/merchant_api_get_products.c index 86e93cdc..c3edbde0 100644 --- a/src/lib/merchant_api_get_products.c +++ b/src/lib/merchant_api_get_products.c @@ -222,7 +222,7 @@ TALER_MERCHANT_products_get ( pgh->cb = cb; pgh->cb_cls = cb_cls; pgh->url = TALER_url_join (backend_url, - "products", + "private/products", NULL); if (NULL == pgh->url) { diff --git a/src/lib/merchant_api_lock_product.c b/src/lib/merchant_api_lock_product.c index 9a831508..3b91d47a 100644 --- a/src/lib/merchant_api_lock_product.c +++ b/src/lib/merchant_api_lock_product.c @@ -197,7 +197,7 @@ TALER_MERCHANT_product_lock ( char *path; GNUNET_asprintf (&path, - "products/%s/lock", + "private/products/%s/lock", product_id); plh->url = TALER_url_join (backend_url, path, diff --git a/src/lib/merchant_api_patch_instance.c b/src/lib/merchant_api_patch_instance.c index 93f3b9fb..f4102357 100644 --- a/src/lib/merchant_api_patch_instance.c +++ b/src/lib/merchant_api_patch_instance.c @@ -243,7 +243,7 @@ TALER_MERCHANT_instance_patch ( char *path; GNUNET_asprintf (&path, - "instances/%s", + "private/instances/%s", instance_id); iph->url = TALER_url_join (backend_url, path, diff --git a/src/lib/merchant_api_patch_product.c b/src/lib/merchant_api_patch_product.c index 9b0aead2..4fba0974 100644 --- a/src/lib/merchant_api_patch_product.c +++ b/src/lib/merchant_api_patch_product.c @@ -235,7 +235,7 @@ TALER_MERCHANT_product_patch ( char *path; GNUNET_asprintf (&path, - "products/%s", + "private/products/%s", product_id); pph->url = TALER_url_join (backend_url, path, diff --git a/src/lib/merchant_api_post_instances.c b/src/lib/merchant_api_post_instances.c index 4548bc0c..55a45e5c 100644 --- a/src/lib/merchant_api_post_instances.c +++ b/src/lib/merchant_api_post_instances.c @@ -244,7 +244,7 @@ TALER_MERCHANT_instances_post ( iph->cb = cb; iph->cb_cls = cb_cls; iph->url = TALER_url_join (backend_url, - "/instances", + "private/instances", NULL); if (NULL == iph->url) { diff --git a/src/lib/merchant_api_post_products.c b/src/lib/merchant_api_post_products.c index 77cc8590..7c3f57ba 100644 --- a/src/lib/merchant_api_post_products.c +++ b/src/lib/merchant_api_post_products.c @@ -228,7 +228,7 @@ TALER_MERCHANT_products_post ( pph->cb = cb; pph->cb_cls = cb_cls; pph->url = TALER_url_join (backend_url, - "products", + "private/products", NULL); if (NULL == pph->url) { |