File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ First add `mailauth` to you installed apps::
58
58
`mailauth.contrib.admin ` is optional and will replace the admin's login
59
59
with token based authentication too.
60
60
61
- `mailauth.contrib.auth ` is optional and provides a new Django User model.
61
+ `mailauth.contrib.user ` is optional and provides a new Django User model.
62
62
The new User model needs to be enabled via the ``AUTH_USER_MODEL `` setting::
63
63
64
64
AUTH_USER_MODEL = 'mailauth_user.EmailUser'
@@ -75,7 +75,7 @@ Next you will need to add the new authentication backend::
75
75
'mailauth.backends.MailAuthBackend',
76
76
)
77
77
78
- Django's `ModelBackend ` is only only needed, if you still want to support
78
+ Django's `ModelBackend ` is only needed, if you still want to support
79
79
password based authentication. If you don't, simply remove it from the list.
80
80
81
81
Last but not least, go to your URL root config `urls.py ` and add the following::
You can’t perform that action at this time.
0 commit comments