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

Commit

Permalink
feat(Line - Restriction MGCP to IP): Add bulk action to restriction
Browse files Browse the repository at this point in the history
  • Loading branch information
feoche committed Feb 9, 2018
1 parent 3ee1050 commit feba8dc
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ angular.module("ovh-api-services").service("OvhApiTelephonyLinePhoneLexi", funct
}
};

return $resource("/telephony/:billingAccount/line/:serviceName/phone", {
var resource = $resource("/telephony/:billingAccount/line/:serviceName/phone", {
billingAccount: "@billingAccount",
serviceName: "@serviceName"
}, {
Expand Down Expand Up @@ -51,4 +51,11 @@ angular.module("ovh-api-services").service("OvhApiTelephonyLinePhoneLexi", funct
}
}
});


resource.resetAllCache = function () {
cache.removeAll();
};

return resource;
});

0 comments on commit feba8dc

Please sign in to comment.