Class RemoteUserBackend
This backend is to be used in conjunction with the ``RemoteUserMiddleware`` found in the middleware module of this package, and is used when the server is handling authentication outside of Django.
Declaration
source linkDocumentation
By default, the ``authenticate`` method creates ``User`` objects for
usernames that don't already exist in the database. Subclasses can disable
this behavior by setting the ``create_unknown_user`` attribute to
``False``.
Methods
▶ def authenticate(self, request, remote_user) override The username passed as ``remote_user`` is considered trusted. Return the ``User`` object with the given username. Create a new ``User`` object if ``create_unknown_user`` is ``True``.
▶ def clean_username(self, username) Perform any cleaning on the "username" prior to using it to get or create the user object. Return the cleaned username.
By default, return the username unchanged.
▶ def configure_user(self, request, user) Configure a user after creation and return the updated user.