relationship type constant

This commit is contained in:
Martin McKeaveney 2021-02-25 12:21:24 +00:00
parent 62c5069528
commit b179418767
2 changed files with 6 additions and 2 deletions

View File

@ -12,6 +12,10 @@ exports.FieldTypes = {
AUTO: "auto",
}
exports.RelationshipTypes = {
ONE_TO_MANY: "one-to-many",
}
exports.AuthTypes = {
APP: "app",
BUILDER: "builder",

View File

@ -2,7 +2,7 @@ const CouchDB = require("../index")
const { IncludeDocs, getLinkDocuments } = require("./linkUtils")
const { generateLinkID } = require("../utils")
const Sentry = require("@sentry/node")
const { FieldTypes } = require("../../constants")
const { FieldTypes, RelationshipTypes } = require("../../constants")
/**
* Creates a new link document structure which can be put to the database. It is important to
@ -150,7 +150,7 @@ class LinkController {
// iterate through the link IDs in the row field, see if any don't exist already
for (let linkId of rowField) {
if (linkedSchema.relationshipType === "one-to-many") {
if (linkedSchema.relationshipType === RelationshipTypes.ONE_TO_MANY) {
const links = await getLinkDocuments({
appId: this._appId,
tableId: field.tableId,