# HG changeset patch # User Thierry Florac # Date 1466416839 -7200 # Node ID 04c33c05f0bedb81db295ce8f0db5e87e139aad6 # Parent 349fd1600cf9d2d4369cd827f0e7a4a5db2c6aea Added base interface for dashboard tables diff -r 349fd1600cf9 -r 04c33c05f0be src/pyams_content/shared/common/interfaces/zmi.py --- a/src/pyams_content/shared/common/interfaces/zmi.py Mon Jun 20 11:59:39 2016 +0200 +++ b/src/pyams_content/shared/common/interfaces/zmi.py Mon Jun 20 12:00:39 2016 +0200 @@ -24,11 +24,15 @@ from zope.interface import Interface -class ISharedToolDashboardTable(ITable): +class IDashboardTable(ITable): + """Base dashboard table marker interface""" + + +class ISharedToolDashboardTable(IDashboardTable): """Shared tool dashboard table marker interface""" -class ISiteRootDashboardTable(ISharedToolDashboardTable): +class ISiteRootDashboardTable(IDashboardTable): """Site root dashboard table marker interface"""