test/data/rrqlexpr_on_attr.py
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Mon, 14 Sep 2009 14:59:23 +0200
branch3.5
changeset 3209 c2c8f88a4520
parent 2634 273eec072cf8
child 3877 7ca53fc72a0a
child 4212 ab6573088b4a
permissions -rw-r--r--
allow user to give ?tab=tabname and be set to the right tab (part of #345399)

"""

:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
from yams.buildobjs import EntityType, RelationType, String
from cubicweb.schema import RRQLExpression

class ToTo(EntityType):
    permissions = {
        'read': ('managers',),
        'add': ('managers',),
        'update': ('managers',),
        'delete': ('managers',),
        }
    attr = String()

class attr(RelationType):
    permissions = {
        'read': ('managers', ),
        'add': ('managers', RRQLExpression('S bla Y'),),
        'delete': ('managers',),
        }