safeModeOptions
Type: object
Default: undefined
This parameter allows to tweak safe mode behaviour. It can only be used when mode
is set to safe
.
{
"mode": "safe",
"safeModeOptions": {
"allowDeletingObjects": false,
"allowEditingAreaCapacity": false
}
}
allowDeletingObjects
Type: boolean
Default: false
When set to false
(the default), published objects cannot be deleted.
When set to true
, it allows to delete published objects (rows, seats, booths...).
Warning
Use this option with caution. In safe mode, relabeling published objects is not possible. But by allowing the deletion of objects, you effectively open the door to relabeling objects, as you can delete an object and recreate it with a different label.
{
"mode": "safe",
"safeModeOptions": {
"allowDeletingObjects": true
}
}
allowEditingAreaCapacity
Type: boolean
Default: false
When set to false
(the default), area capacities cannot be edited.
When set to true
, it will be possible to change the capacity of areas.
{
"mode": "safe",
"safeModeOptions": {
"allowEditingAreaCapacity": true
}
}