From: stefan Date: Thu, 4 Nov 2010 17:50:39 +0000 (+0000) Subject: Anonymous can only see bugs, but neither tasks nor milestones. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=da69e69b0fd88d0db5b734c4800a448cd3f3f3d3;hp=ef2fd9091f86ae8513936e44736b9cb2a8923378;p=roundup.git Anonymous can only see bugs, but neither tasks nor milestones. git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4563 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/share/roundup/templates/devel/schema.py b/share/roundup/templates/devel/schema.py index 0a438ea..44b4b5a 100644 --- a/share/roundup/templates/devel/schema.py +++ b/share/roundup/templates/devel/schema.py @@ -364,7 +364,7 @@ db.security.addPermissionToRole('Anonymous', 'Create', 'user') # Allow anonymous users access to view issues (and the related, linked # information). -for cl in 'bug', 'task', 'milestone', 'severity', 'status', 'resolution', 'msg', 'file': +for cl in 'bug', 'severity', 'status', 'resolution', 'msg', 'file': db.security.addPermissionToRole('Anonymous', 'View', cl) # [OPTIONAL]