Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
from django.utils.deprecation import MiddlewareMixin
from .models import HistoricalRecords
class HistoryRequestMiddleware(MiddlewareMixin):
"""Expose request to HistoricalRecords.
This middleware sets request as a local context/thread variable, making it
available to the model-level utilities to allow tracking of the authenticated user
making a change.
"""
def process_request(self, request):
HistoricalRecords.context.request = request
def process_response(self, request, response):
if hasattr(HistoricalRecords.context, "request"):
del HistoricalRecords.context.request
return response