1
0
Fork 0
mirror of synced 2024-06-28 02:50:50 +12:00

Merge branch 'master' of github.com:Budibase/budibase into feature/plugin-icons

This commit is contained in:
mike12345567 2022-09-30 11:17:43 +01:00
commit 791f6a36a5

View file

@ -13,6 +13,7 @@ import googlesheets from "./googlesheets"
import firebase from "./firebase"
import redis from "./redis"
import snowflake from "./snowflake"
import oracle from "./oracle"
import { getPlugins } from "../api/controllers/plugin"
import { SourceName, Integration, PluginType } from "@budibase/types"
import { getDatasourcePlugin } from "../utilities/fileSystem"
@ -57,7 +58,6 @@ const INTEGRATIONS: { [key: string]: any } = {
// optionally add oracle integration if the oracle binary can be installed
if (process.arch && !process.arch.startsWith("arm")) {
const oracle = require("./oracle")
DEFINITIONS[SourceName.ORACLE] = oracle.schema
INTEGRATIONS[SourceName.ORACLE] = oracle.integration
}