diff --git a/plone/app/discussion/interfaces.py b/plone/app/discussion/interfaces.py index fa75041..498652d 100644 --- a/plone/app/discussion/interfaces.py +++ b/plone/app/discussion/interfaces.py @@ -12,9 +12,13 @@ class IDiscussionSettings(Interface): """ globally_enabled = schema.Bool(title=_(u"Globally enabled"), - description=_(u"Use this setting to enable or disable comments globally"), + description=_(u"Use this setting to enable or disable comments globally."), default=True) + anonymous_comments = schema.Bool(title=_(u"Anonymous Comments"), + 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.