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

Commit

Permalink
feat(telephony.carrier.sip): add cluster details (#238)
Browse files Browse the repository at this point in the history
ref: MANAGER-3210
  • Loading branch information
JeremyDec authored and antleblanc committed Oct 1, 2019
1 parent 64a869e commit 0679a31
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/api/telephony/carrierSip/carrier-sip.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ angular.module('ovh-api-services').service('OvhApiTelephonyCarrierSip', $injecto
Cdrs() {
return $injector.get('OvhApiTelephonyCarrierSipCdrs');
},
ClusterDetails() {
return $injector.get('OvhApiTelephonyCarrierSipClusterDetails');
},
Endpoints() {
return $injector.get('OvhApiTelephonyCarrierSipEndpoints');
},
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
angular.module('ovh-api-services').service('OvhApiTelephonyCarrierSipClusterDetails', $injector => ({
v6() {
return $injector.get('OvhApiTelephonyCarrierSipClusterDetailsV6');
},
}));
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
angular.module('ovh-api-services').service('OvhApiTelephonyCarrierSipClusterDetailsV6', $resource => $resource('/telephony/:billingAccount/carrierSip/:serviceName/clusterDetails', {
billingAccount: '@billingAccount',
serviceName: '@serviceName',
}));

0 comments on commit 0679a31

Please sign in to comment.