3e7abd4518
- Register 6 mini-apps in kommunikation plugin (contact_picker, file_share, calendar_invite, mail_forward, ai_search, task_create) - Connect AdressenTab to backend API (GET/POST/PATCH/DELETE /addresses) - Create BankAccount model, schema, service, routes + migration 0033 - Connect KontenTab to backend API (GET/POST/PATCH/DELETE /bank-accounts) - AI tools already working: 7 tools registered (hybrid_search, get_contact_mails, etc.)
28 lines
720 B
Python
28 lines
720 B
Python
"""Routes package."""
|
|
|
|
from app.routes import (
|
|
addresses, # noqa: F401
|
|
ai_copilot, # noqa: F401
|
|
bank_accounts, # noqa: F401
|
|
audit, # noqa: F401
|
|
auth, # noqa: F401
|
|
contacts, # noqa: F401
|
|
dashboard, # noqa: F401
|
|
entity_history, # noqa: F401
|
|
currencies, # noqa: F401
|
|
taxes, # noqa: F401
|
|
sequences, # noqa: F401
|
|
system_settings, # noqa: F401
|
|
attachments, # noqa: F401
|
|
health, # noqa: F401
|
|
import_export, # noqa: F401
|
|
metrics, # noqa: F401
|
|
notifications, # noqa: F401
|
|
plugins, # noqa: F401
|
|
roles, # noqa: F401
|
|
tenants, # noqa: F401
|
|
users, # noqa: F401
|
|
user_preferences, # noqa: F401
|
|
workflows, # noqa: F401
|
|
)
|