Mercurial > hg > orthanc-book
view Sphinx/source/plugins/python/authorization-1.py @ 1150:84d5e5f3c670
Added tag Orthanc-1.12.7 for changeset a23a5e08f3b4
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 07 Apr 2025 13:01:12 +0200 |
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)