Open mhsdesign opened 9 months ago
node.context.currentSite
node.context.workspace
node.context.*
renderingMode
node.context.workspace.name == 'live'
!renderingMode.isEdit
node.context.workspace.personalWorkspace
renderingMode.isEdit
node.context.currentRenderingMode.*
renderingMode.*
node.context.currentSite
to eel helper to fetch site entitynode.context.workspace
to eel helper to fetch workspace, but attention, the workspace api in fusion also changed.node.context.*
renderingMode
has a basic migration via https://github.com/neos/rector/pull/22, but the not all things are migrated currentlynode.context.workspace.name == 'live'
->!renderingMode.isEdit
node.context.workspace.personalWorkspace
->renderingMode.isEdit
node.context.currentRenderingMode.*
->renderingMode.*