Get features from the appstore

This commit is contained in:
Johannes Zellner
2020-02-20 15:45:34 +01:00
parent 6679fe47df
commit 4b4586c1e5
2 changed files with 5 additions and 45 deletions
+1 -1
View File
@@ -66,6 +66,6 @@ function getSubscription(req, res, next) {
appstore.getSubscription(function (error, result) {
if (error) return next(BoxError.toHttpError(error));
next(new HttpSuccess(200, result)); // { email, cloudronId, plan, cancel_at, status }
next(new HttpSuccess(200, result)); // { email, cloudronId, cloudronCreatedAt, plan, current_period_end, canceled_at, cancel_at, status, features }
});
}