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

Commit

Permalink
feat(me.order): get bill (#183)
Browse files Browse the repository at this point in the history
  • Loading branch information
lizardK authored and antleblanc committed Jun 22, 2019
1 parent d098e2c commit dfe60f8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/me/order/me-order.v6.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ angular.module("ovh-api-services").service("OvhApiMeOrderV6", function ($resourc
getDetail: { method: "GET", url: "/me/order/:orderId/details/:detailId", params: { orderId: "@orderId", detailId: "@detailId" }, cache: queryCache },
pay: { method: "POST", url: "/me/order/:orderId/pay", interceptor: interceptor },
payRegisteredPaymentMean: { method: "POST", url: "/me/order/:orderId/payWithRegisteredPaymentMean", interceptor: interceptor },
associatedObject: { method: "GET", url: "/me/order/:orderId/associatedObject" }
associatedObject: { method: "GET", url: "/me/order/:orderId/associatedObject" },
bill: { method: "GET", url: "/me/order/:orderId/bill" }
});

userOrderResource.resetAllCache = function () {
Expand Down

0 comments on commit dfe60f8

Please sign in to comment.