add iconUrl to manifest

This commit is contained in:
Girish Ramakrishnan
2026-02-06 18:04:47 +01:00
parent 4461e7225f
commit 5ca2078461
9 changed files with 25 additions and 21 deletions
+1 -1
View File
@@ -17,5 +17,5 @@ async function getAppVersion(req, res, next) {
const [error, result] = await safe(community.getAppVersion(req.query.url, req.query.version));
if (error) return next(BoxError.toHttpError(error));
next(new HttpSuccess(200, result));
next(new HttpSuccess(200, result)); // { manifest, publishState, creationDate, ts }
}