class documentation

Undocumented

Method create_superuser Undocumented
Method create_user Undocumented
Method with_perm Undocumented
Class Variable use_in_migrations Undocumented
Method _create_user Create and save a user with the given username, email, and password.

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): (source)

Undocumented

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

Undocumented

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

Undocumented

use_in_migrations: bool = (source)

Undocumented

def _create_user(self, username, email, password, **extra_fields): (source)

Create and save a user with the given username, email, and password.