Enforce app count limit during installation

This commit is contained in:
Johannes Zellner
2025-08-20 20:01:43 +02:00
parent d6d70163d5
commit 5f9789f99f
2 changed files with 6 additions and 0 deletions
+1
View File
@@ -87,6 +87,7 @@ BoxError.toHttpError = function (error) {
case BoxError.BAD_FIELD:
return new HttpError(400, error);
case BoxError.LICENSE_ERROR:
case BoxError.PLAN_LIMIT:
return new HttpError(402, error);
case BoxError.NOT_FOUND:
return new HttpError(404, error);