Hi! I've read some examples about custom User Model. In all of them, it's suggested implement the class AbtractUser (in this case the app is called *users*)
For instance, in this example https://wsvincent.com/django-custom-user-model-tutorial/ they do users/models.pyfrom django.contrib.auth.models import AbstractUserfrom django.db import models class CustomUser(AbstractUser): but then they say to include *users.apps.UserConfig*. Why? Where does it come from? Why not the class *users.apps.CustomUser* ? # djauth/settings.pyINSTALLED_APPS = [ ... 'users.apps.UsersConfig', ] Thank you very much -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/5bcb0c0a-c83f-4a67-97a7-325ef6ecc87b%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

