1
0
Fork 0
mirror of synced 2024-06-16 09:25:12 +12:00
budibase/packages/server/middleware/controllers/application.js

19 lines
485 B
JavaScript
Raw Normal View History

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