mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-02-06 05:40:09 +00:00
12 lines
255 B
JavaScript
12 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,
|
|
},
|
|
})
|
|
},
|
|
}
|
|
}
|