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

Commit

Permalink
fix(): missing cache for get requests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jérémy DE CESARE committed Apr 9, 2018
1 parent cc176fb commit 72d7652
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
8 changes: 6 additions & 2 deletions dist/ovh-api-services.js
Original file line number Diff line number Diff line change
Expand Up @@ -16288,6 +16288,7 @@ angular.module("ovh-api-services").service("OvhApiTelephonyRsvaV6", ["$resource"
}, {
query: {
method: "GET",
cache: cache,
isArray: true
},
edit: {
Expand All @@ -16297,15 +16298,18 @@ angular.module("ovh-api-services").service("OvhApiTelephonyRsvaV6", ["$resource"
getAllowedRateCodes: {
method: "GET",
url: "/telephony/:billingAccount/rsva/:serviceName/allowedRateCodes",
cache: cache,
isArray: true
},
getCurrentRateCode: {
method: "GET",
url: "/telephony/:billingAccount/rsva/:serviceName/currentRateCode"
url: "/telephony/:billingAccount/rsva/:serviceName/currentRateCode",
cache: cache
},
getScheduledRateCode: {
method: "GET",
url: "/telephony/:billingAccount/rsva/:serviceName/scheduledRateCode"
url: "/telephony/:billingAccount/rsva/:serviceName/scheduledRateCode",
cache: cache
},
scheduleRateCode: {
method: "POST",
Expand Down
Loading

0 comments on commit 72d7652

Please sign in to comment.