Files
POC-Java-www/pocwww/security.py
2017-03-09 18:12:18 -06: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