From: richard Date: Mon, 15 Mar 2004 05:51:23 +0000 (+0000) Subject: permission fix for anonymous X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7c9aaec18365b35a0ae31b7e9c618e0a332643d4;p=roundup.git permission fix for anonymous git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2148 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/templates/classic/dbinit.py b/templates/classic/dbinit.py index 0a7093b..2e8c474 100644 --- a/templates/classic/dbinit.py +++ b/templates/classic/dbinit.py @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: dbinit.py,v 1.5 2004-03-15 05:50:20 richard Exp $ +# $Id: dbinit.py,v 1.6 2004-03-15 05:51:23 richard Exp $ import os @@ -130,7 +130,7 @@ def open(name=None): db.security.addPermissionToRole('Anonymous', p) # - Allow anonymous users access to view issues (which implies being # able to view all linked information too - for cl in 'issue', 'file', 'msg', 'keyword': + for cl in 'issue', 'file', 'msg', 'keyword', 'priority', 'status': p = db.security.getPermission('View', cl) db.security.addPermissionToRole('Anonymous', p) # - Allow anonymous users access to edit the "issue" class of data