From 64f9bcde045e069cad71b31df6f04ffaec9fee32 Mon Sep 17 00:00:00 2001 From: mhsdesign <85400359+mhsdesign@users.noreply.github.com> Date: Fri, 12 Jan 2024 11:21:25 +0100 Subject: [PATCH 1/2] TASK: 4621 Homepage should hide uriPathSegment --- Neos.Neos/NodeTypes/Mixin/Site.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Neos.Neos/NodeTypes/Mixin/Site.yaml b/Neos.Neos/NodeTypes/Mixin/Site.yaml index c2d38ef77a3..af00674d1c5 100644 --- a/Neos.Neos/NodeTypes/Mixin/Site.yaml +++ b/Neos.Neos/NodeTypes/Mixin/Site.yaml @@ -8,3 +8,8 @@ abstract: true superTypes: 'Neos.Neos:Document': true + properties: + uriPathSegment: + ui: + inspector: + hidden: true From 663109ce4a1b800a04dccda6974d387dc153cd22 Mon Sep 17 00:00:00 2001 From: mhsdesign <85400359+mhsdesign@users.noreply.github.com> Date: Tue, 6 Feb 2024 21:06:38 +0100 Subject: [PATCH 2/2] TASK: Allow inspector.hidden = true in schema --- Neos.Neos/Resources/Private/Schema/NodeTypes.schema.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Neos.Neos/Resources/Private/Schema/NodeTypes.schema.yaml b/Neos.Neos/Resources/Private/Schema/NodeTypes.schema.yaml index f06b5fbbd7c..72d650e7d87 100755 --- a/Neos.Neos/Resources/Private/Schema/NodeTypes.schema.yaml +++ b/Neos.Neos/Resources/Private/Schema/NodeTypes.schema.yaml @@ -52,7 +52,7 @@ additionalProperties: additionalProperties: false properties: - 'hidden': { type: ['string', 'null'], description: 'Option to hide a property.' } + 'hidden': { type: ['string', 'boolean', 'null'], description: 'Option to hide a property.' } 'group': { type: ['string', 'null'], description: 'Identifier of the inspector group in which this property should be edited. If not set, will not appear in inspector at all.' }