1
0
Fork 0
mirror of synced 2024-07-01 12:30:41 +12:00
budibase/packages/server/src/api/controllers/public/rows.js
2022-02-22 17:38:27 +00:00

37 lines
728 B
JavaScript

const rowController = require("../row")
// makes sure that the user doesn't need to pass in the type, tableId or _id params for
// the call to be correct
function fixRow(row, params) {
if (!params || !row) {
return row
}
if (params.rowId) {
row._id = params.rowId
}
if (params.tableId) {
row.tableId = params.tableId
}
if (!row.type) {
row.type = "row"
}
return row
}
exports.search = async ctx => {
await rowController.search(ctx)
console.log(ctx.body)
}
exports.create = ctx => {
ctx.request.body = fixRow(ctx.request.body, ctx.params)
}
exports.read = () => {}
exports.update = async ctx => {
ctx.request.body = fixRow(ctx.request.body, ctx.params)
}
exports.delete = () => {}