1
0
Fork 0
mirror of synced 2024-06-30 03:50:37 +12:00
budibase/packages/server/src/api/controllers/integration.js

13 lines
286 B
JavaScript
Raw Normal View History

2020-11-27 03:43:56 +13:00
const { definitions } = require("../../integrations")
exports.fetch = async function(ctx) {
// TODO: fetch these from a github repo etc
ctx.status = 200
ctx.body = definitions
}
2020-12-19 07:19:43 +13:00
exports.find = async function(ctx) {
ctx.status = 200
ctx.body = definitions[ctx.params.type]
}