54 lines
998 B
Python
54 lines
998 B
Python
|
|
"""Domain schemas for user-engine."""
|
||
|
|
|
||
|
|
from user_engine.domain.models import (
|
||
|
|
Account,
|
||
|
|
AccountStatus,
|
||
|
|
Actor,
|
||
|
|
Application,
|
||
|
|
ApplicationBinding,
|
||
|
|
AttributeDefinition,
|
||
|
|
AuditRecord,
|
||
|
|
AuthorizationDecision,
|
||
|
|
AuthorizationEffect,
|
||
|
|
AuthorizationRequest,
|
||
|
|
Catalog,
|
||
|
|
CatalogLifecycle,
|
||
|
|
ExternalIdentity,
|
||
|
|
Membership,
|
||
|
|
Mutability,
|
||
|
|
OutboxEvent,
|
||
|
|
PrincipalType,
|
||
|
|
ProfileScope,
|
||
|
|
ProfileValue,
|
||
|
|
ProjectionType,
|
||
|
|
Sensitivity,
|
||
|
|
User,
|
||
|
|
Visibility,
|
||
|
|
)
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"Account",
|
||
|
|
"AccountStatus",
|
||
|
|
"Actor",
|
||
|
|
"Application",
|
||
|
|
"ApplicationBinding",
|
||
|
|
"AttributeDefinition",
|
||
|
|
"AuditRecord",
|
||
|
|
"AuthorizationDecision",
|
||
|
|
"AuthorizationEffect",
|
||
|
|
"AuthorizationRequest",
|
||
|
|
"Catalog",
|
||
|
|
"CatalogLifecycle",
|
||
|
|
"ExternalIdentity",
|
||
|
|
"Membership",
|
||
|
|
"Mutability",
|
||
|
|
"OutboxEvent",
|
||
|
|
"PrincipalType",
|
||
|
|
"ProfileScope",
|
||
|
|
"ProfileValue",
|
||
|
|
"ProjectionType",
|
||
|
|
"Sensitivity",
|
||
|
|
"User",
|
||
|
|
"Visibility",
|
||
|
|
]
|