budibase/packages/server/src/api/controllers/public/rows.js

37 lines
625 B
JavaScript
Raw Normal View History

// 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
}
2022-02-17 19:58:09 +01:00
exports.search = () => {
}
exports.create = () => {
ctx.request.body = fixRow(ctx.request.body, ctx.params)
2022-02-17 19:58:09 +01:00
}
exports.read = () => {
2022-02-17 19:58:09 +01:00
}
exports.update = async ctx => {
ctx.request.body = fixRow(ctx.request.body, ctx.params)
2022-02-17 19:58:09 +01:00
}
exports.delete = () => {
}