bugfix, create client db not passing config
This commit is contained in:
parent
1db38ee4d6
commit
c7bebf3e48
|
@ -1,9 +1,9 @@
|
|||
const CouchDb = require(".")
|
||||
|
||||
module.exports = async clientId => {
|
||||
await CouchDb.db.create(clientId)
|
||||
module.exports = async (config, clientId) => {
|
||||
await CouchDb.db.create(`client-${clientId}`)
|
||||
|
||||
const db = CouchDb.db.use(clientId)
|
||||
const db = CouchDb(config).db.use(`client-${clientId}`)
|
||||
|
||||
await db.insert(
|
||||
{
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
const couchdb = require("../../../../db")({ database: "couch" })
|
||||
const createClientDb = require("../../../../db/createClientDb")
|
||||
const createClientDb = require("../../../../db/createClientDb")({
|
||||
database: "couch",
|
||||
})
|
||||
const CLIENT_DB_ID = "client-testing";
|
||||
const TEST_APP_ID = "test-app";
|
||||
|
||||
|
|
Loading…
Reference in New Issue