1
0
Fork 0
mirror of synced 2024-06-01 18:20:18 +12:00

Fix issue with determining when to hide sensitive fields from query definitions and never delete the query schema

This commit is contained in:
Andrew Kingston 2021-11-25 11:21:54 +00:00
parent 439c8cd3ef
commit 737ce9dc32

View file

@ -1,6 +1,10 @@
const { processString } = require("@budibase/string-templates")
const CouchDB = require("../../db")
const { generateQueryID, getQueryParams } = require("../../db/utils")
const {
generateQueryID,
getQueryParams,
isProdAppID,
} = require("../../db/utils")
const { BaseQueryVerbs } = require("../../constants")
const env = require("../../environment")
const { Thread, ThreadType } = require("../../threads")
@ -90,10 +94,9 @@ exports.find = async function (ctx) {
const db = new CouchDB(ctx.appId)
const query = enrichQueries(await db.get(ctx.params.queryId))
// remove properties that could be dangerous in real app
if (env.isProd()) {
if (isProdAppID(ctx.appId)) {
delete query.fields
delete query.parameters
delete query.schema
}
ctx.body = query
}