datasquirel/dist/package-shared/api/crud/put.js
Benjamin Toby 7e8bb37c09 Updates
2025-07-05 14:59:30 +01:00

14 lines
354 B
JavaScript

import apiCrudPOST from "./post";
export default async function apiCrudPUT({ dbName, tableName, body, targetID }) {
const updatedBody = Object.assign({}, body);
if (targetID) {
updatedBody["id"] = targetID;
}
return await apiCrudPOST({
dbName,
tableName,
body: updatedBody,
update: true,
});
}