7 lines
179 B
Python
7 lines
179 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from django.contrib.auth.middleware import RemoteUserMiddleware
|
||
|
|
||
|
|
||
|
class CustomHeaderRemoteUserMiddleware(RemoteUserMiddleware):
|
||
|
header = 'HTTP_X_USER'
|