So I have a pyramid handler where the entire handler requires
authorization. I've followed the guide here:
http://sluggo.scrapping.cc/python/Akhet/auth.html.
But instead of doing:
@action(permission='authenticated')
def some_method(self):
....
For each action in my handler, is there a way to tell Pyramid that the
entire handler requires the authenticated permission?
Thanks,
Walden