1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-11-25 00:46:46 +00:00
bramw_baserow/web-frontend/modules/database/utils/undoRedoConstants.js
2022-04-22 13:21:22 +00:00

14 lines
246 B
JavaScript

// The different types of undo/redo scopes available for the database module.
export const DATABASE_ACTION_SCOPES = {
table(tableId) {
return {
table: tableId,
}
},
view(viewId) {
return {
view: viewId,
}
},
}