Mercurial > hg > orthanc-book
view Sphinx/source/plugins/python/authorization-1.py @ 823:9e953bba1b21
added stone_webviewer_troubleshooting
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 22 Mar 2022 08:13:32 +0100 |
parents | ba2403ebd4b7 |
children |
line wrap: on
line source
import orthanc import pprint def Filter(uri, **request): print('User trying to access URI: %s' % uri) pprint.pprint(request) return True # False to forbid access orthanc.RegisterIncomingHttpRequestFilter(Filter)