Updating for review comments.
This commit is contained in:
parent
eeecd61058
commit
c5d856f193
|
@ -49,11 +49,7 @@ async function createInstance(template) {
|
||||||
exports.fetch = async function(ctx) {
|
exports.fetch = async function(ctx) {
|
||||||
let allDbs = await CouchDB.allDbs()
|
let allDbs = await CouchDB.allDbs()
|
||||||
const appDbNames = allDbs.filter(dbName => dbName.startsWith(APP_PREFIX))
|
const appDbNames = allDbs.filter(dbName => dbName.startsWith(APP_PREFIX))
|
||||||
const apps = []
|
const apps = appDbNames.map(db => new CouchDB(db).get(db))
|
||||||
for (let dbName of appDbNames) {
|
|
||||||
const db = new CouchDB(dbName)
|
|
||||||
apps.push(db.get(dbName))
|
|
||||||
}
|
|
||||||
if (apps.length === 0) {
|
if (apps.length === 0) {
|
||||||
ctx.body = []
|
ctx.body = []
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue