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