From 25442128aa99436a06f740a346760c4d7f9063c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 5 Mar 2014 16:40:03 +0100 Subject: [PATCH] change board decision to not be an incoming mail (#4392) --- src/pfwbged/basecontent/types.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pfwbged/basecontent/types.py b/src/pfwbged/basecontent/types.py index acf2b15..e1c5e36 100644 --- a/src/pfwbged/basecontent/types.py +++ b/src/pfwbged/basecontent/types.py @@ -61,14 +61,14 @@ class Agenda(PfwbBaseDocument): implements(IAgenda) -class IBoardDecision(IDmsIncomingMail): +class IBoardDecision(IPfwbBaseDocument): """ """ meeting_date = schema.Date( title=_(u'Meeting Date'), required=False) -class BoardDecision(DmsIncomingMail): +class BoardDecision(PfwbBaseDocument): implements(IBoardDecision)