Repository URL to install this package:
|
Version:
1.10.dev0 ▾
|
from pyramid.security import Allow, Everyone
class Root(object):
__acl__ = [(Allow, Everyone, 'view'),
(Allow, 'group:editors', 'edit')]
def __init__(self, request):
pass