1
0
Fork 0
mirror of synced 2024-07-05 06:20:55 +12:00

linting

This commit is contained in:
Martin McKeaveney 2021-08-11 20:34:45 +01:00
parent 1678c86bf4
commit 83b99be1d6

View file

@ -1,6 +1,10 @@
const CouchDB = require("../index")
const { IncludeDocs, getLinkDocuments } = require("./linkUtils")
const { generateLinkID, InternalTables, getUserMetadataParams } = require("../utils")
const {
generateLinkID,
InternalTables,
getUserMetadataParams,
} = require("../utils")
const Sentry = require("@sentry/node")
const { FieldTypes, RelationshipTypes } = require("../../constants")
@ -211,10 +215,14 @@ class LinkController {
// We need to map the global users to metadata in each app for relationships
if (field.tableId === InternalTables.USER_METADATA) {
const users = await this._db.allDocs(getUserMetadataParams(null, {}))
const metadataRequired = rowField.filter(userId => !users.rows.some(user => user.id === userId))
const metadataRequired = rowField.filter(
userId => !users.rows.some(user => user.id === userId)
)
// ensure non-existing user metadata is created in the app DB
await this._db.bulkDocs(metadataRequired.map(userId => ({ _id: userId })))
await this._db.bulkDocs(
metadataRequired.map(userId => ({ _id: userId }))
)
}
// iterate through the link IDs in the row field, see if any don't exist already