Mercurial > hg > orthanc-book
view Sphinx/source/plugins/python/authorization-1.py @ 1251:2da32965a475
object move-storage
| author | Alain Mazy <am@orthanc.team> |
|---|---|
| date | Tue, 23 Dec 2025 13:22:17 +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)
