From 22797d553872b999814177dcd2faaf3bca2077bc Mon Sep 17 00:00:00 2001 From: Luca Bellenghi Date: Thu, 31 Oct 2024 14:21:58 +0100 Subject: [PATCH] update serializer for bando children --- CHANGES.rst | 5 +++-- src/design/plone/contenttypes/browser/configure.zcml | 10 ++++++++++ src/design/plone/contenttypes/interfaces/__init__.py | 3 ++- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 14450c1b..d139578e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,8 +4,9 @@ Changelog 6.2.23 (unreleased) ------------------- -- Nothing changed yet. - +- Override BandoView: in io-Comune we add new children on Folder Deepening content + and we need to proper handle it + [lucabel] 6.2.22 (2024-10-30) ------------------- diff --git a/src/design/plone/contenttypes/browser/configure.zcml b/src/design/plone/contenttypes/browser/configure.zcml index 96ee97ae..8a34ea48 100644 --- a/src/design/plone/contenttypes/browser/configure.zcml +++ b/src/design/plone/contenttypes/browser/configure.zcml @@ -46,5 +46,15 @@ permission="zope2.View" /> + + + diff --git a/src/design/plone/contenttypes/interfaces/__init__.py b/src/design/plone/contenttypes/interfaces/__init__.py index 56b75e8c..6db4c337 100644 --- a/src/design/plone/contenttypes/interfaces/__init__.py +++ b/src/design/plone/contenttypes/interfaces/__init__.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- """Module where all interfaces, events and exceptions live.""" from redturtle.volto.interfaces import IRedturtleVoltoLayer +from redturtle.bandi.interfaces.browserlayer import IRedturtleBandiLayer from zope.interface import Interface -class IDesignPloneContenttypesLayer(IRedturtleVoltoLayer): +class IDesignPloneContenttypesLayer(IRedturtleVoltoLayer, IRedturtleBandiLayer): """Marker interface that defines a browser layer."""