Mercurial > p > roundup > code
diff doc/customizing.txt @ 3652:3a19d31be628
add in note about perms
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 10 Aug 2006 23:21:42 +0000 |
| parents | 12633662ff63 |
| children | cfa7fa2c5e0f |
line wrap: on
line diff
--- a/doc/customizing.txt Thu Aug 10 23:14:43 2006 +0000 +++ b/doc/customizing.txt Thu Aug 10 23:21:42 2006 +0000 @@ -2,7 +2,7 @@ Customising Roundup =================== -:Version: $Revision: 1.200 $ +:Version: $Revision: 1.201 $ .. This document borrows from the ZopeBook section on ZPT. The original is at: http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx @@ -3292,6 +3292,16 @@ Note that we automatically get the date of the time log entry creation through the standard property "creation". + You will need to grant "Creation" permission to the users who are + allowed to add timelog entries. You may do this with: + + db.security.addPermissionToRole('User', 'Create', 'timelog') + db.security.addPermissionToRole('User', 'View', 'timelog') + + If users are also able to *edit* timelog entries, then also include: + + db.security.addPermissionToRole('User', 'Edit', 'timelog') + 2. Link to the new class from your issue class (again, in ``schema.py``)::
