Mercurial > hg > orthanc-book
view Sphinx/source/plugins/python/authorization-1.py @ 1204:91c2c3f6a817
merge
| author | Alain Mazy <am@orthanc.team> |
|---|---|
| date | Tue, 21 Oct 2025 12:10:01 +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)
