test/data_schemareader/schema.py
author pierre-yves
Tue, 14 May 2013 00:36:43 +0200
changeset 9021 d8806996ac01
parent 8167 41ec579e27c4
child 10907 9ae707db5265
permissions -rw-r--r--
[connection] add logging method on connection If we are to use this object like we currently do with session, we need to have the logging method as a lot of code use them.

from cubicweb.schemas.base import in_group, CWSourceSchemaConfig
# copy __permissions__ to avoid modifying a shared dictionary
in_group.__permissions__ = in_group.__permissions__.copy()
in_group.__permissions__['read'] = ('managers',)

cw_for_source = CWSourceSchemaConfig.get_relation('cw_for_source')
cw_for_source.__permissions__ = {'read': ('managers', 'users'),
                                 'add': ('managers',),
                                 'delete': ('managers',)}