1
0
Fork 0
mirror of synced 2024-09-28 15:21:28 +12:00

Get latest RevId if not provided

This commit is contained in:
Mel O'Hagan 2022-04-20 11:51:01 +01:00
parent 8858a416ef
commit d85e022182
3 changed files with 4 additions and 3 deletions

View file

@ -81,7 +81,7 @@ const duplicateRowHandler = async (action, context) => {
const deleteRowHandler = async action => {
const { tableId, revId, rowId } = action.parameters
if (tableId && revId && rowId) {
if (tableId && rowId) {
try {
await API.deleteRow({ tableId, rowId, revId })
notificationStore.actions.success("Row deleted")

View file

@ -35,7 +35,7 @@ export const buildRowEndpoints = API => ({
* @param revId the rev of the row to delete
*/
deleteRow: async ({ tableId, rowId, revId }) => {
if (!tableId || !rowId || !revId) {
if (!tableId || !rowId) {
return
}
return await API.delete({

View file

@ -259,8 +259,9 @@ exports.find = async ctx => {
exports.destroy = async function (ctx) {
const db = getAppDB()
const { _id, _rev } = ctx.request.body
const { _id } = ctx.request.body
let row = await db.get(_id)
let _rev = ctx.request.body._rev || row._rev
if (row.tableId !== ctx.params.tableId) {
throw "Supplied tableId doesn't match the row's tableId"