1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-11-21 23:37:55 +00:00
bramw_baserow/web-frontend/modules/database/services/rowHistory.js
2023-09-07 08:09:47 +00:00

13 lines
255 B
JavaScript

export default (client) => {
return {
fetchAll({ tableId, rowId, limit, offset }) {
return client.get(`/database/rows/table/${tableId}/${rowId}/history/`, {
params: {
limit,
offset,
},
})
},
}
}