test/data_schemareader/schema.py
author Julien Cristau <julien.cristau@logilab.fr>
Wed, 12 Jun 2013 18:33:50 +0200
changeset 9007 e27337dfec8c
parent 8167 41ec579e27c4
child 10907 9ae707db5265
permissions -rw-r--r--
repository: monkey patch pyro connection handling to detect clients going away When a pyro client goes away we need to close their session (to release their cnxset). Add a dict to the repository mapping pyro client threads to session object. Closes #2932058

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',)}