--- a/schemas/__init__.py Fri Jul 24 19:40:46 2009 +0200
+++ b/schemas/__init__.py Fri Jul 24 19:40:56 2009 +0200
@@ -1,4 +1,5 @@
-
+# permissions for "meta" entity type (readable by anyone, can only be
+# added/deleted by managers)
META_ETYPE_PERMS = {
'read': ('managers', 'users', 'guests',),
'add': ('managers',),
@@ -6,6 +7,8 @@
'update': ('managers', 'owners',),
}
+# permissions for "meta" relation type (readable by anyone, can only be
+# added/deleted by managers)
META_RTYPE_PERMS = {
'read': ('managers', 'users', 'guests',),
'add': ('managers',),