budibase/packages/server/middleware/controllers/application.js

19 lines
485 B
JavaScript
Raw Normal View History

2020-04-07 18:25:09 +02:00
const couchdb = require("../../db");
const controller = {
fetch: async ctx => {
2020-04-08 17:57:27 +02:00
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;
},
2020-04-07 18:25:09 +02:00
create: async ctx => {
2020-04-08 17:57:27 +02:00
const clientDb = couchdb.db.use(`client-${ctx.params.clientId}`);
ctx.body = await clientDb.insert(ctx.request.body)
2020-04-07 18:25:09 +02:00
}
}
module.exports = controller;