átlagos kiegészítséek jó sok
This commit is contained in:
55
backend/app/models/identity/__init__.py
Normal file
55
backend/app/models/identity/__init__.py
Normal file
@@ -0,0 +1,55 @@
|
||||
# identity package exports
|
||||
from .identity import (
|
||||
Person,
|
||||
User,
|
||||
Wallet,
|
||||
VerificationToken,
|
||||
SocialAccount,
|
||||
ActiveVoucher,
|
||||
UserTrustProfile,
|
||||
UserRole,
|
||||
)
|
||||
|
||||
from .address import (
|
||||
Address,
|
||||
GeoPostalCode,
|
||||
GeoStreet,
|
||||
GeoStreetType,
|
||||
Rating,
|
||||
)
|
||||
|
||||
from .security import PendingAction, ActionStatus
|
||||
from .social import (
|
||||
ServiceProvider,
|
||||
Vote,
|
||||
Competition,
|
||||
UserScore,
|
||||
ServiceReview,
|
||||
ModerationStatus,
|
||||
SourceType,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"Person",
|
||||
"User",
|
||||
"Wallet",
|
||||
"VerificationToken",
|
||||
"SocialAccount",
|
||||
"ActiveVoucher",
|
||||
"UserTrustProfile",
|
||||
"UserRole",
|
||||
"Address",
|
||||
"GeoPostalCode",
|
||||
"GeoStreet",
|
||||
"GeoStreetType",
|
||||
"Rating",
|
||||
"PendingAction",
|
||||
"ActionStatus",
|
||||
"ServiceProvider",
|
||||
"Vote",
|
||||
"Competition",
|
||||
"UserScore",
|
||||
"ServiceReview",
|
||||
"ModerationStatus",
|
||||
"SourceType",
|
||||
]
|
||||
Reference in New Issue
Block a user