mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-25 00:46:46 +00:00
14 lines
246 B
JavaScript
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,
|
|
}
|
|
},
|
|
}
|