Add POI feature and imporve the overall backend implementation

This commit is contained in:
Urtzi Alfaro
2025-11-12 15:34:10 +01:00
parent e8096cd979
commit 5783c7ed05
173 changed files with 16862 additions and 9078 deletions

View File

@@ -14,6 +14,7 @@ from .users import User
from .tokens import RefreshToken, LoginAttempt
from .onboarding import UserOnboardingProgress, UserOnboardingSummary
from .consent import UserConsent, ConsentHistory
from .deletion_job import DeletionJob
__all__ = [
'User',
@@ -23,5 +24,6 @@ __all__ = [
'UserOnboardingSummary',
'UserConsent',
'ConsentHistory',
'DeletionJob',
"AuditLog",
]