2020-04-07 18:25:09 +02:00
|
|
|
const couchdb = require("../../db");
|
|
|
|
|
|
|
|
const controller = {
|
2020-04-08 12:18:30 +02:00
|
|
|
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-08 12:18:30 +02:00
|
|
|
},
|
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;
|