Skip to content

Commit

Permalink
Fix: Limit LayoutPath override to packages of Neos/Neos
Browse files Browse the repository at this point in the history
To prevent exceptions in third party modules we limit the override of the layoutRootPaths to the
Neos/Neos backend modules

re #9
  • Loading branch information
markusguenther committed Mar 9, 2021
1 parent 186f0fe commit c75c93b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Configuration/Views.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-
requestFilter: 'parentRequest.isPackage("Neos.Neos") && parentRequest.isController("Backend\Module") && isFormat("html") && !isPackage("Neos.Media.Browser") && !isController("Module\Management\History")'
requestFilter: 'isPackage("Neos.Neos") && parentRequest.isController("Backend\Module") && isFormat("html") && !isPackage("Neos.Media.Browser") && !isController("Module\Management\History")'
options:
layoutRootPaths:
'Unikka.LoginAs': 'resource://Unikka.LoginAs/Private/Layouts'
Expand Down

0 comments on commit c75c93b

Please sign in to comment.