-
-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Special cases of node.context.*
#44
Comments
✅ Already implemented replacements: - node.context.currentSite
+ Neos.Site.findBySiteNode(site) - node.context.currentRenderingMode.name
+ renderingMode.name
- node.context.currentRenderingMode.title
+ renderingMode.title |
🙅 From my POV we can't migrate this in the mentioned way, as this is just a wild guess if this was the intention of the code.
|
@mhsdesign Which EEL helper is able to do that? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
node.context.currentSite
to eel helper to fetch site entity ✅node.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 TASK: Adjust migration forrenderingMode.isEdit
#22, but the not all things are migrated currently 🙅 ✅node.context.workspace.name == 'live'
->!renderingMode.isEdit
node.context.workspace.personalWorkspace
->renderingMode.isEdit
node.context.currentRenderingMode.*
->renderingMode.*
The text was updated successfully, but these errors were encountered: