Backend: - Add 2FA authentication with TOTP support - Add API keys management system - Add audit logging for security events - Add file upload/management system - Add notifications system with preferences - Add session management - Add webhooks integration - Add analytics endpoints - Add export functionality - Add password policy enforcement - Add new database migrations for core tables Frontend: - Add module position system (top/bottom sidebar sections) - Add search and notifications module configuration tabs - Add mobile logo replacing hamburger menu - Center page title absolutely when no tabs present - Align sidebar footer toggles with navigation items - Add lighter icon color in dark theme for mobile - Add API keys management page - Add notifications page with context - Add admin analytics and audit logs pages 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
515 B
Python
13 lines
515 B
Python
"""CRUD operations package."""
|
|
|
|
from app.crud.user import user
|
|
from app.crud import settings
|
|
from app.crud.audit_log import audit_log
|
|
from app.crud.api_key import api_key
|
|
from app.crud.notification import notification
|
|
from app.crud.session import session
|
|
from app.crud.webhook import webhook, webhook_delivery, webhook_service
|
|
from app.crud.file import file_storage
|
|
|
|
__all__ = ["user", "settings", "audit_log", "api_key", "notification", "session", "webhook", "webhook_delivery", "webhook_service", "file_storage"]
|