2022-03-28 17:44:33 +02:00
|
|
|
const { cloneDeep } = require("lodash")
|
2020-11-26 15:43:56 +01:00
|
|
|
const { definitions } = require("../../integrations")
|
2022-08-11 14:50:05 +02:00
|
|
|
const { SourceName } = require("@budibase/types")
|
2022-03-28 17:44:33 +02:00
|
|
|
const googlesheets = require("../../integrations/googlesheets")
|
2022-05-05 10:59:10 +02:00
|
|
|
const { featureFlags } = require("@budibase/backend-core")
|
2020-11-26 15:43:56 +01:00
|
|
|
|
2021-05-03 09:31:09 +02:00
|
|
|
exports.fetch = async function (ctx) {
|
2020-11-26 15:43:56 +01:00
|
|
|
ctx.status = 200
|
2022-03-28 17:44:33 +02:00
|
|
|
const defs = cloneDeep(definitions)
|
|
|
|
|
|
|
|
// for google sheets integration google verification
|
2022-05-05 10:59:10 +02:00
|
|
|
if (featureFlags.isEnabled(featureFlags.FeatureFlag.GOOGLE_SHEETS)) {
|
2022-08-11 14:50:05 +02:00
|
|
|
defs[SourceName.GOOGLE_SHEETS] = googlesheets.schema
|
2022-03-28 17:44:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx.body = defs
|
2020-11-26 15:43:56 +01:00
|
|
|
}
|
2020-12-18 19:19:43 +01:00
|
|
|
|
2021-05-03 09:31:09 +02:00
|
|
|
exports.find = async function (ctx) {
|
2020-12-18 19:19:43 +01:00
|
|
|
ctx.status = 200
|
|
|
|
ctx.body = definitions[ctx.params.type]
|
|
|
|
}
|