test/data_schemareader/schema.py
author Julien Cristau <julien.cristau@logilab.fr>
Mon, 07 Mar 2016 17:53:20 +0100
changeset 11177 8448a8c5cca4
parent 8167 41ec579e27c4
child 10907 9ae707db5265
permissions -rw-r--r--
[server/sources] Fix authenticate on pre-3.10 database When migrating from a pre-3.10 database, the CWSource entity type and cw_source relation type are not known, but authenticate should still work to be able to add 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',)}