diff --git a/composer/report/interfaces.py b/composer/report/interfaces.py index 4a5ef66..8d020f2 100644 --- a/composer/report/interfaces.py +++ b/composer/report/interfaces.py @@ -73,6 +73,15 @@ class IReport(ITemplate): title=_(u'Description'), description=_(u'A brief description of the report.'), required=False,) + owner = schema.ASCIILine( + title=_(u'Owner'), + description=_(u'The user ID of the owner of the report.'), + required=True,) + public = schema.Bool( + title=_(u'Public'), + description=_(u'Check this field to make the report available ' + u'to others.'), + required=False,) manager = Attribute('The manager of this message object')