Skip to content

Commit 0375244

Browse files
committed
Fixed django#19628 - Noted that app for custom user model must be in INSTALLED_APPS
Thanks dpravdin and Jordan Messina.
1 parent 1dd7492 commit 0375244

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/topics/auth/customizing.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -404,8 +404,9 @@ the :setting:`AUTH_USER_MODEL` setting that references a custom model::
404404

405405
AUTH_USER_MODEL = 'myapp.MyUser'
406406

407-
This dotted pair describes the name of the Django app, and the name of the Django
408-
model that you wish to use as your User model.
407+
This dotted pair describes the name of the Django app (which must be in your
408+
:setting:`INSTALLED_APPS`), and the name of the Django model that you wish to
409+
use as your User model.
409410

410411
.. admonition:: Warning
411412

0 commit comments

Comments
 (0)