Skip to content
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.

Commit

Permalink
fix(order.cart.item): fix query is array param (#257)
Browse files Browse the repository at this point in the history
ref: MANAGER-3320

Signed-off-by: Jérémy De-Cesare <[email protected]>
  • Loading branch information
JeremyDec authored and antleblanc committed Nov 6, 2019
1 parent 46ff236 commit 714b608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/order/cart/item/order-cart-item.v6.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ angular.module('ovh-api-services').service('OvhApiOrderCartItemV6', ($resource,
cartId: '@cartId',
itemId: '@itemId',
}, {
query: { method: 'GET', cache: queryCache },
query: { method: 'GET', cache: queryCache, isArray: true },
get: { method: 'GET', cache },
put: { method: 'PUT', interceptor },
});
Expand Down

0 comments on commit 714b608

Please sign in to comment.