1
0
Fork 0
mirror of synced 2024-06-22 16:10:40 +12:00
budibase/packages/server/middleware/controllers/application.js
2020-04-15 15:24:48 +01:00

19 lines
485 B
JavaScript

const couchdb = require("../../db");
const controller = {
fetch: async ctx => {
const clientDb = couchdb.db.use(`client-${ctx.params.clientId}`);
const body = await clientDb.view("client", "by_type", {
include_docs: true,
key: ["app"]
});
ctx.body = body.rows;
},
create: async ctx => {
const clientDb = couchdb.db.use(`client-${ctx.params.clientId}`);
ctx.body = await clientDb.insert(ctx.request.body)
}
}
module.exports = controller;