Files
planka/server/api/helpers/utils/get-available-storage.js

21 lines
515 B
JavaScript

/*!
* Copyright (c) 2024 PLANKA Software GmbH
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
*/
const bytes = require('bytes');
module.exports = {
async fn() {
let { storageLimit } = await InternalConfig.qm.getOneMain();
storageLimit = bytes(storageLimit);
if (storageLimit === null) {
return null;
}
const storageUsage = await StorageUsage.qm.getOneMain();
return BigInt(storageLimit) - BigInt(storageUsage.total);
},
};