comment with todo for discussion control panel added.

svn path=/plone.app.discussion/trunk/; revision=27288
This commit is contained in:
Timo Stollenwerk 2009-06-03 15:24:48 +00:00
parent ccf1e0456f
commit e4a62a2c0d
1 changed files with 7 additions and 0 deletions

View File

@ -11,6 +11,12 @@ class IDiscussionSettings(Interface):
configuration registry and obtainable via plone.registry.
"""
# Todo: Write a short hint, that other discussion related options can
# be found elsewhere in the Plone control panel:
#
# - Types control panel: Allow comments on content types
# - Search control panel: Show comments in search results
globally_enabled = schema.Bool(title=_(u"Globally enabled"),
description=_(u"Use this setting to enable or disable comments globally."),
default=True)
@ -19,6 +25,7 @@ class IDiscussionSettings(Interface):
description=_(u"Use this setting to enable or disable posting comments as anonymous visitor."),
default=False)
class IConversation(IIterableMapping):
"""A conversation about a content object.