mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-01-31 03:12:45 +00:00
8 lines
223 B
JavaScript
8 lines
223 B
JavaScript
// The different types of undo/redo scopes available for the enterprise module.
|
|
export const ENTERPRISE_ACTION_SCOPES = {
|
|
teams_in_workspace(workspaceId) {
|
|
return {
|
|
teams_in_workspace: workspaceId,
|
|
}
|
|
},
|
|
}
|