symposion_app/pinaxcon/disable_cscache.py

8 lines
224 B
Python
Raw Normal View History

from django.utils.cache import add_never_cache_headers
2017-03-05 07:34:15 +00:00
class DisableClientSideCachingMiddleware(object):
def process_response(self, request, response):
add_never_cache_headers(response)
return response