I have a Pyjamas app that requires authorized access, which calls several cache files. I want to protect the cache files too, but they're in the static dir. Is there a simple way to do this?
Currently I am planning on creating a function that requires authorization that will load the cache files from a special directory, basically like the download() function. Thanks!

