Give admin rights to the EE group.
authorMatthijs Kooijman <matthijs@stdin.nl>
Tue, 29 Jun 2010 07:59:39 +0000 (09:59 +0200)
committerMatthijs Kooijman <matthijs@stdin.nl>
Fri, 2 Jul 2010 12:05:07 +0000 (14:05 +0200)
Previously, all logged in users would have admin rights.

conf/farmconfig.py

index 9f8f5fec5c3d417efa149a9bfe958a69db5cfa1a..5d3e8a31ae20ed286b50b45c6d4a71f2bd27cee8 100644 (file)
@@ -105,9 +105,9 @@ class FarmConfig(DefaultConfig):
 
     acl_hierarchic = True
 
-    # Give users all rights, but don't give any rights to anonymous users
+    # Give all rights to the EE group, but no rights to anonymous users.
     acl_rights_default = u""
-    acl_rights_before = u"Known:read,write,delete,revert,admin"
+    acl_rights_before = u"EE:read,write,delete,revert,admin"
 
     # Mail --------------------------------------------------------------