Moved rootNodeRedirectsToNewEntity option to new settings system

This commit is contained in:
Jan Böhmer 2025-07-06 19:09:10 +02:00
parent 9812671a89
commit 6e28f2a74e
2 changed files with 10 additions and 0 deletions

View file

@ -68,5 +68,9 @@ class SidebarSettings
#[SettingsParameter(label: new TM("settings.behavior.sidebar.rootNodeExpanded"))]
public bool $rootNodeExpanded = true;
/**
* @var bool Whether the root node should redirect to a new entity creation page when clicked.
*/
#[SettingsParameter(label: new TM("settings.behavior.sidebar.rootNodeRedirectsToNewEntity"))]
public bool $rootNodeRedirectsToNewEntity = false;
}