app/soc/models/document.py
changeset 1191 bb530ca58bc5
parent 1141 4a37239d834f
child 1262 e2e5b7798746
--- a/app/soc/models/document.py	Mon Feb 02 20:07:52 2009 +0000
+++ b/app/soc/models/document.py	Mon Feb 02 20:56:14 2009 +0000
@@ -63,7 +63,7 @@
       'determines the access scheme.')
 
   #: field storing the required access to write to this document
-  write_access = db.StringProperty(default='public', required=True,
+  write_access = db.StringProperty(default='admin', required=True,
       choices=['admin', 'restricted', 'member', 'user'],
       verbose_name=ugettext('Write Access'))
   write_access.help_text = ugettext(