schemas/workflow.py
branchstable
changeset 3529 87b5086fd6a7
parent 3528 77a69de16709
child 3536 f6c9a5df80fb
child 3628 440931181322
--- a/schemas/workflow.py	Wed Sep 30 16:06:52 2009 +0200
+++ b/schemas/workflow.py	Wed Sep 30 16:06:58 2009 +0200
@@ -117,15 +117,13 @@
                                         description=_('destination state'))
 
 
-# XXX should we allow managers to delete TrInfo?
-
 class TrInfo(EntityType):
     """workflow history item"""
     # 'add' security actually done by hooks
     permissions = {
         'read':   ('managers', 'users', 'guests',), # XXX U has_read_permission O ?
         'add':    ('managers', 'users', 'guests',),
-        'delete': (),
+        'delete': (), # XXX should we allow managers to delete TrInfo?
         'update': ('managers', 'owners',),
     }