Feature/sp call limits (#63)

* add api for setting/querying call limits by account and sp

* update an account or sp limit if one exists rather than creating a new one
This commit is contained in:
Dave Horton
2022-09-20 13:12:28 +02:00
parent 052a19cfdc
commit 05c46c5f39
4 changed files with 19 additions and 4 deletions
+4 -4
View File
@@ -40,7 +40,7 @@ router.post('/', async(req, res) => {
try {
let uuid;
if (account_sid) {
const existing = (await AccountLimits.retrieveAll(account_sid) || [])
const existing = (await AccountLimits.retrieve(account_sid) || [])
.find((el) => el.category === category);
if (existing) {
uuid = existing.account_limits_sid;
@@ -55,7 +55,7 @@ router.post('/', async(req, res) => {
}
}
else {
const existing = (await ServiceProviderLimits.retrieveAll(service_provider_sid) || [])
const existing = (await ServiceProviderLimits.retrieve(service_provider_sid) || [])
.find((el) => el.category === category);
if (existing) {
uuid = existing.service_provider_limits_sid;
@@ -85,8 +85,8 @@ router.get('/', async(req, res) => {
const logger = req.app.locals.logger;
try {
const limits = account_sid ?
await AccountLimits.retrieveAll(account_sid) :
await ServiceProviderLimits.retrieveAll(service_provider_sid);
await AccountLimits.retrieve(account_sid) :
await ServiceProviderLimits.retrieve(service_provider_sid);
if (req.query?.category) {
return res.status(200).json(limits.filter((el) => el.category === req.query.category));