File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,9 @@ API documentation
118
118
:members:
119
119
120
120
.. autoattribute :: mailauth.contrib.user.models.AbstractEmailUser.email
121
+ :noindex:
121
122
.. autoattribute :: mailauth.contrib.user.models.AbstractEmailUser.session_salt
123
+ :noindex:
122
124
123
125
.. autoclass :: mailauth.contrib.user.models.EmailUser
124
126
:members:
Original file line number Diff line number Diff line change @@ -51,14 +51,14 @@ class AbstractEmailUser(AbstractUser):
51
51
password = None
52
52
53
53
email = CIEmailField (_ ("email address" ), unique = True , db_index = True )
54
- """The field is unique and case insensitive to serve as a better username."""
54
+ """Unique and case insensitive to serve as a better username."""
55
55
56
- # Salt for the session hash replacing the password in this function.
57
56
session_salt = models .CharField (
58
57
max_length = 12 ,
59
58
editable = False ,
60
59
default = _get_session_salt ,
61
60
)
61
+ """Salt for the session hash replacing the password in this function."""
62
62
63
63
def has_usable_password (self ):
64
64
return False
You can’t perform that action at this time.
0 commit comments