remove urlencoded

we don't use this in our API
This commit is contained in:
Girish Ramakrishnan
2024-07-19 22:28:14 +02:00
parent 525e48ae59
commit 7f11699fac
5 changed files with 3 additions and 10 deletions
-2
View File
@@ -71,8 +71,6 @@ async function registerCloudronWithLogin(req, res, next) {
}
async function getSubscription(req, res, next) {
assert.strictEqual(typeof req.body, 'object');
const [error, result] = await safe(appstore.getSubscription());
if (error) return next(BoxError.toHttpError(error));