This commit is contained in:
mike12345567 2021-08-06 16:39:30 +01:00
parent be48677490
commit 506ff7dcd3
2 changed files with 1 additions and 5 deletions

View File

@ -185,9 +185,7 @@ exports.getAllDbs = async () => {
*/
exports.getAllApps = async ({ CouchDB, dev, all } = {}) => {
let dbs = await exports.getAllDbs()
const appDbNames = dbs.filter(dbName =>
dbName.startsWith(exports.APP_PREFIX)
)
const appDbNames = dbs.filter(dbName => dbName.startsWith(exports.APP_PREFIX))
const appPromises = appDbNames.map(db =>
// skip setup otherwise databases could be re-created
new CouchDB(db, { skip_setup: true }).get(DocumentTypes.APP_METADATA)

View File

@ -10,8 +10,6 @@ const {
const { Configs } = require("../../../constants")
const email = require("../../../utilities/email")
const { upload, ObjectStoreBuckets } = require("@budibase/auth").objectStore
const fetch = require("node-fetch")
const env = require("../../../environment")
const APP_PREFIX = "app_"