--- 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',),
}