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