We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a220747 commit bf91483Copy full SHA for bf91483
server/src/api_endpoints/tenants/index.js
@@ -22,7 +22,7 @@ const getTenants = async (req, res, next) => {
22
return acc
23
}, {})
24
const tenants = await dbAdminTenant.getTenants(filters, sort, order)
25
- res.status(200).send(tenants);
+ res.status(200).send(tenants)
26
} catch ({ httpStatusCode = 500, message }) {
27
return next(createError(httpStatusCode, { message }))
28
}
0 commit comments