You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
replace Neos.Node.inBackend(node) which is removed here neos/neos-development-collection#4067 with Neos.Backend.isEditMode(request) || Neos.Backend.isPreviewMode(request)
Currently node.context.inBackend is rewritten to Neos.Node.inBackend, but we might get rid of that method or deprecate it...
The question is if we should provide a Flow or rector migration for existing 9.0 projects using Neos.Node.inBackend? - could be a simple regex ^^ (or one needs to run this regex yourself via php storm.)
I would only provide migrations for features that we actually released. The few existing 9.0 projects are maintained by people capable of handling this just fine.
Resolves partly neos/neos-development-collection#4396
As @mficzel said here neos/neos-ui#3571:
Currently
node.context.inBackend
is rewritten toNeos.Node.inBackend
, but we might get rid of that method or deprecate it...The question is if we should provide a Flow or rector migration for existing 9.0 projects using
Neos.Node.inBackend
? - could be a simple regex ^^ (or one needs to run this regex yourself via php storm.)search
replace with
The text was updated successfully, but these errors were encountered: