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

View File

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

View File

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