Files @ 3001324d5e94
Branch filter:

Location: symposion_app/pinaxcon/disable_cscache.py

James Polley
git subrepo pull vendor/registrasion

subrepo:
subdir: "vendor/registrasion"
merged: "3545a80"
upstream:
origin: "git@gitlab.com:tchaypo/registrasion.git"
branch: "lca2018"
commit: "3545a80"
git-subrepo:
version: "0.3.1"
origin: "???"
commit: "???"
1
2
3
4
5
6
7
from django.utils.cache import add_never_cache_headers


class DisableClientSideCachingMiddleware(object):
    def process_response(self, request, response):
        add_never_cache_headers(response)
        return response