1
0
Fork 0
mirror of synced 2024-06-28 02:50:50 +12:00
budibase/packages/server/src/api/controllers/integration.js
2022-02-10 11:34:50 +01:00

12 lines
242 B
JavaScript

const { definitions } = require("../../integrations")
exports.fetch = async function (ctx) {
ctx.status = 200
ctx.body = definitions
}
exports.find = async function (ctx) {
ctx.status = 200
ctx.body = definitions[ctx.params.type]
}