schemas/base.py
branchstable
changeset 4759 af2e6c377c71
parent 4755 13a5d3a7410e
child 5421 8167de96c523
equal deleted inserted replaced
4758:0efdcf0fa4c7 4759:af2e6c377c71
   210     The target application is responsible for updating timestamp
   210     The target application is responsible for updating timestamp
   211     when necessary to invalidate the cache (typically in hooks).
   211     when necessary to invalidate the cache (typically in hooks).
   212 
   212 
   213     Also, checkout the AppObject.get_cache() method.
   213     Also, checkout the AppObject.get_cache() method.
   214     """
   214     """
       
   215     # XXX only handle by hooks, shouldn't be readable/editable at all through
       
   216     # the ui and so no permissions should be granted, no?
   215     __permissions__ = {
   217     __permissions__ = {
   216         'read':   ('managers', 'users', 'guests'),
   218         'read':   ('managers', 'users', 'guests'),
   217         'add':    ('managers',),
   219         'add':    ('managers',),
   218         'update': ('managers', 'users',), # XXX
   220         'update': ('managers', 'users',), # XXX
   219         'delete': ('managers',),
   221         'delete': ('managers',),