class documentation

class UserManager(BaseUserManager):

View In Hierarchy

Undocumented

Method create​_superuser Undocumented
Method create​_user Undocumented
Method with​_perm Undocumented
Method ​_create​_user Create and save a user with the given username, email, and password.
Class Variable use​_in​_migrations Undocumented

Inherited from BaseUserManager:

Class Method normalize​_email Normalize the email address by lowercasing the domain part of it.
Method get​_by​_natural​_key Undocumented
Method make​_random​_password Generate a random password with the given length and given allowed_chars. The default value of allowed_chars does not have "I" or "O" or letters and digits that look similar -- just to avoid confusion.
def create_superuser(self, username, email=None, password=None, **extra_fields):

Undocumented

def create_user(self, username, email=None, password=None, **extra_fields):

Undocumented

def with_perm(self, perm, is_active=True, include_superusers=True, backend=None, obj=None):

Undocumented

def _create_user(self, username, email, password, **extra_fields):
Create and save a user with the given username, email, and password.
use_in_migrations: bool =

Undocumented