@r1tsu/payload
Version:
11 lines (10 loc) • 363 B
JavaScript
/**
* Rollback the transaction from the req using the db adapter and removes it from the req
*/ export async function killTransaction(req) {
const { payload, transactionID } = req;
if (transactionID) {
await payload.db.rollbackTransaction(req.transactionID);
delete req.transactionID;
}
}
//# sourceMappingURL=killTransaction.js.map