From e7333cf17d714a8ddb215e98fb87c646c1eb64b1 Mon Sep 17 00:00:00 2001 From: Manuel Reinhardt Date: Thu, 23 May 2024 16:35:21 +0200 Subject: [PATCH] Make IOSHAContentSkinLayer inherit from IEuphorieContentLayer Ref syslabcom/scrum#1979 --- src/osha/oira/interfaces.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osha/oira/interfaces.py b/src/osha/oira/interfaces.py index c728ba182..144afe02c 100644 --- a/src/osha/oira/interfaces.py +++ b/src/osha/oira/interfaces.py @@ -1,5 +1,5 @@ +from euphorie.content.interfaces import IEuphorieContentLayer from osha.oira.nuplone.interfaces import IOiRAFormLayer -from plonetheme.nuplone.skin.interfaces import NuPloneSkin from zope.interface import Interface @@ -8,5 +8,5 @@ class IProductLayer(Interface): installed.""" -class IOSHAContentSkinLayer(IOiRAFormLayer, NuPloneSkin): +class IOSHAContentSkinLayer(IOiRAFormLayer, IEuphorieContentLayer): """Marker interface for the CMS/Content editing skin."""