2015-02-11 21:24:42 +08:00
|
|
|
from .custom_permissions import CustomPermissionsUser
|
2016-02-05 22:46:19 +08:00
|
|
|
from .custom_user import CustomUser, CustomUserWithoutIsActiveField, ExtensionUser
|
2015-11-17 13:39:28 +08:00
|
|
|
from .invalid_models import CustomUserNonUniqueUsername
|
2015-06-16 02:07:31 +08:00
|
|
|
from .is_active import IsActiveTestUser1
|
2017-05-27 20:35:02 +08:00
|
|
|
from .minimal import MinimalUser
|
2018-08-05 06:16:47 +08:00
|
|
|
from .no_password import NoPasswordUser
|
2019-01-16 23:07:28 +08:00
|
|
|
from .proxy import Proxy, UserProxy
|
2015-02-12 03:38:52 +08:00
|
|
|
from .uuid_pk import UUIDUser
|
2016-05-16 09:54:03 +08:00
|
|
|
from .with_custom_email_field import CustomEmailField
|
2015-06-16 02:07:31 +08:00
|
|
|
from .with_foreign_key import CustomUserWithFK, Email
|
2016-07-26 21:50:29 +08:00
|
|
|
from .with_integer_username import IntegerUsernameUser
|
2018-02-17 22:00:12 +08:00
|
|
|
from .with_last_login_attr import UserWithDisabledLastLoginField
|
2019-07-31 23:06:59 +08:00
|
|
|
from .with_many_to_many import CustomUserWithM2M, CustomUserWithM2MThrough, Organization
|
2022-03-31 20:39:28 +08:00
|
|
|
from .with_unique_constraint import CustomUserWithUniqueConstraint
|
2015-02-11 21:24:42 +08:00
|
|
|
|
|
|
|
__all__ = (
|
2016-05-16 09:54:03 +08:00
|
|
|
"CustomEmailField",
|
|
|
|
"CustomPermissionsUser",
|
|
|
|
"CustomUser",
|
|
|
|
"CustomUserNonUniqueUsername",
|
|
|
|
"CustomUserWithFK",
|
|
|
|
"CustomUserWithM2M",
|
|
|
|
"CustomUserWithM2MThrough",
|
2022-03-31 20:39:28 +08:00
|
|
|
"CustomUserWithUniqueConstraint",
|
2016-05-16 09:54:03 +08:00
|
|
|
"CustomUserWithoutIsActiveField",
|
|
|
|
"Email",
|
|
|
|
"ExtensionUser",
|
|
|
|
"IntegerUsernameUser",
|
|
|
|
"IsActiveTestUser1",
|
|
|
|
"MinimalUser",
|
2019-07-31 23:06:59 +08:00
|
|
|
"NoPasswordUser",
|
|
|
|
"Organization",
|
|
|
|
"Proxy",
|
|
|
|
"UUIDUser",
|
|
|
|
"UserProxy",
|
2019-01-16 23:07:28 +08:00
|
|
|
"UserWithDisabledLastLoginField",
|
2015-02-11 21:24:42 +08:00
|
|
|
)
|