1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-02-06 05:40:09 +00:00
bramw_baserow/web-frontend/modules/database/utils/undoRedoConstants.js
2022-04-22 13:21:22 +00:00

13 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,
}
},
}