10 lines
287 B
Python
10 lines
287 B
Python
# -*- coding: utf-8 -*-
|
|
# bthlabs-jsonrpc-django | (c) 2022-present Tomek Wójcik | MIT License
|
|
from __future__ import annotations
|
|
|
|
from django.contrib.auth.middleware import RemoteUserMiddleware
|
|
|
|
|
|
class CustomHeaderRemoteUserMiddleware(RemoteUserMiddleware):
|
|
header = 'HTTP_X_USER'
|