39 lines
569 B
JavaScript
39 lines
569 B
JavaScript
|
const CouchDB = require("../../../db")
|
||
|
|
||
|
exports.patch = async (ctx) => {
|
||
|
ctx.body = {}
|
||
|
}
|
||
|
|
||
|
exports.save = async (ctx) => {
|
||
|
ctx.body = {}
|
||
|
}
|
||
|
|
||
|
exports.fetchView = async (ctx) => {
|
||
|
ctx.body = {}
|
||
|
}
|
||
|
|
||
|
exports.fetchTableRows = async (ctx) => {
|
||
|
ctx.body = {}
|
||
|
}
|
||
|
|
||
|
exports.find = async (ctx) => {
|
||
|
ctx.body = {}
|
||
|
}
|
||
|
|
||
|
exports.destroy = async (ctx) => {
|
||
|
ctx.body = {}
|
||
|
}
|
||
|
|
||
|
exports.bulkDestroy = async (ctx) => {
|
||
|
ctx.body = {}
|
||
|
}
|
||
|
|
||
|
exports.validate = async (ctx) => {
|
||
|
ctx.body = {}
|
||
|
}
|
||
|
|
||
|
exports.fetchEnrichedRow = async (ctx) => {
|
||
|
// TODO: should this join?
|
||
|
ctx.body = {}
|
||
|
}
|