mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-05-26 07:08:05 +00:00
8 lines
196 B
Python
8 lines
196 B
Python
from django.contrib.auth.backends import RemoteUserBackend
|
|
|
|
class MyRemoteUserBackend(RemoteUserBackend):
|
|
def configure_user(self, user):
|
|
user.is_superuser = True
|
|
return user
|
|
|