Add comprehensive backend features and mobile UI improvements
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>
This commit is contained in:
@@ -16,6 +16,12 @@ from app.config import settings
|
||||
# Import all models so Alembic can detect them for auto-generating migrations
|
||||
from app.models.user import User # noqa
|
||||
from app.models.settings import Settings # noqa
|
||||
from app.models.audit_log import AuditLog # noqa
|
||||
from app.models.api_key import APIKey # noqa
|
||||
from app.models.notification import Notification # noqa
|
||||
from app.models.session import UserSession # noqa
|
||||
from app.models.webhook import Webhook, WebhookDelivery # noqa
|
||||
from app.models.file import StoredFile # noqa
|
||||
|
||||
# this is the Alembic Config object, which provides
|
||||
# access to the values within the .ini file in use.
|
||||
|
||||
Reference in New Issue
Block a user