Files
POC-Java-www/pocwww/security.py
2017-05-02 10:16:40 -05:00

11 lines
282 B
Python

from pyramid.security import Allow, Everyone, Authenticated
class UserLoginFactory(object):
__acl__ = [(Allow, Everyone, 'view'),
(Allow, Authenticated, 'control'),
(Allow, Authenticated, 'edit'), ]
def __init__(self, request):
pass