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

Commit

Permalink
fix(apiV7): missing route parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Jérémy DE CESARE committed Feb 6, 2018
1 parent e55b1b3 commit 34b7a05
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
21 changes: 21 additions & 0 deletions dist/ovh-api-services.js
Original file line number Diff line number Diff line change
Expand Up @@ -13102,6 +13102,27 @@ angular.module("ovh-api-services").service("OvhApiTelephonyLineOptions", ["$inje
};
}]);

angular.module("ovh-api-services").service("OvhApiTelephonyLineFunctionPhoneAvailableFunctionErika", ["apiv7", function (apiv7) {
"use strict";

var telephonyLinePhoneFunctionAvailableFunctionEndpoint = apiv7("/telephony/:billingAccount/line/:serviceName/phone/functionKey/:keyNum/availableFunction", {
billingAccount: "@billingAccount",
serviceName: "@serviceName",
keyNum: "@keyNum"
});

return telephonyLinePhoneFunctionAvailableFunctionEndpoint;
}]);

angular.module("ovh-api-services").service("OvhApiTelephonyLineFunctionPhoneAvailableFunction", ["$injector", function ($injector) {
"use strict";
return {
Erika: function () {
return $injector.get("OvhApiTelephonyLineFunctionPhoneAvailableFunctionErika");
}
};
}]);

angular.module("ovh-api-services").service("OvhApiTelephonyLinePhoneFunctionErika", ["apiv7", function (apiv7) {
"use strict";

Expand Down
Loading

0 comments on commit 34b7a05

Please sign in to comment.