1
0
Fork 0
mirror of synced 2024-10-06 04:54:52 +13:00

Minor fix for the plugin datasource error that occurred when opening apps in an environment where the datasource no longer exists.

This commit is contained in:
mike12345567 2023-02-08 19:17:15 +00:00
parent 5c675f80d4
commit 68912f8030
2 changed files with 6 additions and 2 deletions

View file

@ -14,7 +14,6 @@ import { invalidateDynamicVariables } from "../../threads/utils"
import { db as dbCore, context, events } from "@budibase/backend-core"
import { UserCtx, Datasource, Row } from "@budibase/types"
import sdk from "../../sdk"
import { mergeConfigs } from "../../sdk/app/datasources/datasources"
export async function fetch(ctx: UserCtx) {
// Get internal tables

View file

@ -63,8 +63,12 @@ function useEnvVars(str: any) {
export async function removeSecrets(datasources: Datasource[]) {
const definitions = await getDefinitions()
const finalDatasources = []
for (let datasource of datasources) {
const schema = definitions[datasource.source]
if (!schema) {
continue
}
if (datasource.config) {
// strip secrets from response, so they don't show in the network request
if (datasource.config.auth) {
@ -93,8 +97,9 @@ export async function removeSecrets(datasources: Datasource[]) {
}
}
}
finalDatasources.push(datasource)
}
return datasources
return finalDatasources
}
export async function removeSecretSingle(datasource: Datasource) {