From: richard Date: Wed, 11 Sep 2002 01:18:24 +0000 (+0000) Subject: anonymous may view by default X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=8d814ee001dbd11ac93ddd3ca709938ed2459c6c;p=roundup.git anonymous may view by default git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1126 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/templates/classic/dbinit.py b/roundup/templates/classic/dbinit.py index 237320a..0cb944d 100644 --- a/roundup/templates/classic/dbinit.py +++ b/roundup/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.26 2002-09-09 23:55:19 richard Exp $ +# $Id: dbinit.py,v 1.27 2002-09-11 01:18:24 richard Exp $ import os @@ -128,8 +128,8 @@ def open(name=None): # - Allow anonymous users access to the "issue" class of data # Note: this also grants access to related information like files, # messages, statuses etc that are linked to issues - #p = db.security.getPermission('View', 'issue') - #db.security.addPermissionToRole('Anonymous', p) + p = db.security.getPermission('View', 'issue') + db.security.addPermissionToRole('Anonymous', p) # - Allow anonymous users access to edit the "issue" class of data # Note: this also grants access to create related information like # files and messages etc that are linked to issues