kpsul/kfet/auth/context_processors.py

8 lines
230 B
Python
Raw Normal View History

from django.contrib.auth.context_processors import PermWrapper
def temporary_auth(request):
if hasattr(request, "real_user"):
return {"user": request.real_user, "perms": PermWrapper(request.real_user)}
return {}