Agent Zero
a7e3890634
Phase 2: Tags UI, Custom Fields UI, Notifications Bell
...
- Tags UI: TagsPage (CRUD, color picker), TagBadge, TagSelector (multi-select, inline creation)
- Custom Fields Backend: model, schema, service, routes, migration 0041
- Custom Fields Frontend: CustomFieldsPage (definitions CRUD), CustomFieldRenderer (dynamic field rendering)
- Custom Fields: _collect_custom_field_definitions() extended to merge DB definitions with plugin definitions
- Notifications Bell: NotificationBell (30s polling, unread badge), NotificationDropdown, NotificationItem
- NotificationBell integrated into TopBar
- Routes: /tags, /settings/custom-fields registered
- Settings nav: Custom Fields entry added
- Menu items: Tags added to automation plugin manifest
2026-07-26 03:02:25 +02:00
Agent Zero
054ecb1c91
Fix: register plugin routes in create_app() not lifespan(); add status column to contacts migration 0039; add updated_at to user_tenants migration 0037
2026-07-26 00:42:31 +02:00
Agent Zero
3828e1b029
Fix: drop RLS policy on users before dropping tenant_id column in migration 0037
2026-07-25 21:29:17 +02:00
Agent Zero
f6a099390e
Fix: remove updated_at from user_tenants INSERT in migration 0037
2026-07-25 21:24:30 +02:00
Agent Zero
f8f0d3e52a
Fix: use pg_index.indisunique instead of pg_indexes.unique in migration 0037
2026-07-25 21:19:47 +02:00
Agent Zero
2e9fafc289
Fix: correct SQL quoting for unique keyword in migration 0037
2026-07-25 21:15:20 +02:00
Agent Zero
36fc5b868e
Fix: SQL syntax error in migration 0037 (unique keyword quoting)
2026-07-25 21:11:11 +02:00
Agent Zero
727d86614e
Security fixes: P0-P2 complete (22 fixes)
...
P0 (7): Auth-bypass removed, migrations fixed, plugin-upload disabled, RLS FORCE+WITH CHECK, plugin double-registration fixed, persistent volume, domain removed
P1 (11): User/tenant model, Redis centralized, worker separated, transactional outbox, XSS fixed, DMS chunked streaming, permissions unified, password reset, metrics secured, config/docs fixed, cross-tenant FK
P2 (4): Contact model normalized, cross-imports reduced 94%, commands+state machines for contacts/dms/mail/calendar, SPA path-traversal
8 new migrations, 99 unit tests, 13 commands, 8 contracts, 72 files changed
2026-07-25 21:03:46 +02:00
Agent Zero
b01c798739
fix: Chat search index, DMS group-share user_id, verify workflows and mail salt
...
- Implement CommSearchProvider: index_message(), reindex_all() with FTS + vector search
- Add migration 0035: search_tsv + embedding columns on comm_messages
- Fix DMS group-share: use current_user user_id instead of random uuid4()
- Workflows already DB-configurable (seed from onboarding.py, loaded from DB)
- Mail salt already dynamic with legacy fallback (migration 0026)
2026-07-25 03:02:41 +02:00
Agent Zero
6412eb03a8
fix: Replace automation stubs with real execution engine
...
- Replace automation execute stub with run_automation() from execution_engine.py
- Replace agent execute stub with run_agent() from agent_runner.py
- Persist automation settings in system_settings.automation_config JSONB
- Add migration 0034 for automation_config column
- Settings are now saved and loaded from database instead of being ignored
2026-07-25 02:52:07 +02:00
Agent Zero
3e7abd4518
feat: Mini-Apps registry, Stammdaten backend persistence, bank accounts
...
- 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.)
2026-07-25 02:11:29 +02:00
Agent Zero
fb79b17ea4
fix: correct alembic revision ID in migration 0032
2026-07-24 17:24:47 +02:00
Agent Zero
2fd4bd123d
fix: restore API response formats + ai-ui-control ws + profile fields
...
- Restore {plugins: [...], total: N} for /plugins and /plugins/active-manifests
(flat array broke frontend PluginRegistry → no menu items → empty UI)
- Restore {count: N} for /notifications/unread-count
(scalar broke frontend notification badge)
- Fix ai_ui_control: on_install → on_activate for WS manager registration
(WS 403 on every reconnect after container restart)
- Fix double /api/v1 prefix in useAIContext.ts and SuggestionBadge.tsx
- Add first_name, last_name, avatar_url to User model + migration 0032
- Extend UserUpdate schema with profile + password change fields
- Extend user_service.update_user with profile fields + password change
- Extend frontend UserResponse/UserUpdate types
2026-07-24 17:17:53 +02:00
Agent Zero
924d28cbf2
fix: resolve menu duplicates, route prefix conflicts, API path bugs, permissions.deleted_at, remove test plugin from production
2026-07-24 08:19:45 +02:00
Agent Zero
191a6fb4c4
fix(migration): handle existing contact_id column in mails table
2026-07-24 01:50:11 +02:00
Agent Zero
bd8234ba75
fix(migration): replace has_column with information_schema query for asyncpg compatibility
2026-07-24 01:47:33 +02:00
Agent Zero
d54a87cf84
Task 5.23: Deduplication / Merge — ContactMergeHistory model, dedup service, API routes (duplicates/merge/merge-history), DedupDialog frontend, i18n, 5 tests
2026-07-23 23:58:45 +02:00
Agent Zero
182af355d1
feat(5.22): Saved Searches / Smart Lists — reusable filters for list views
...
- SavedFilter model with TenantMixin (name, entity_type, filter_criteria JSONB, user_id)
- Routes: GET/POST /saved-filters, DELETE /saved-filters/{id} with RBAC
- Alembic migration 0029_saved_filters creates saved_filters table
- Frontend: SavedFilters.tsx component with save/load/delete UI
- Frontend: api/savedFilters.ts with React Query hooks
- Integrated into ContactsListPage as example
- i18n keys for savedFilters.* in de.json and en.json
- Tests: test_saved_filters.py (9 tests) + SavedFilters.test.tsx (3 tests)
- Registered SavedFilter in conftest.py
2026-07-23 23:44:50 +02:00
Agent Zero
75a7063bff
feat(5.2): add User Preferences API with full-stack implementation
...
Backend:
- Create app/models/user_preference.py with TenantMixin (user_id, key, value JSONB)
- Create app/routes/user_preferences.py with GET/PUT/DELETE endpoints + RBAC
- Add user_preferences:read/write to CORE_PERMISSIONS
- Add user_preferences to legacy role permissions (admin/editor/viewer)
- Register route in app/main.py and app/routes/__init__.py
- Create alembic migration 0028_user_preferences
- Add UserPreference model to conftest.py for test schema
- Fix pre-existing conftest seed (Contact industry field removed in migration 0027)
Frontend:
- Create frontend/src/api/userPreferences.ts with React Query hooks
- Create frontend/src/hooks/useUserPreferences.ts syncing with uiStore
- Add i18n entries for de.json and en.json
Tests:
- 13 tests covering CRUD, tenant isolation, CSRF, unauthenticated access
- All tests passing
2026-07-23 20:39:42 +02:00
Agent Zero
879106c4eb
Phase 1C: Frontend unified contact UI
2026-07-23 17:17:32 +02:00
Agent Zero
ec81940178
Phase 0 Complete: Tasks 0.7-0.20
...
- 0.7: UI-Design-Richtlinien (docs/ui-design-guidelines.md, 535 lines)
- 0.8: Theme-Customization Backend (4 theme fields, migration 0023)
- 0.9: Theme-Customization Frontend (SettingsTheme.tsx, themeStore.ts, live preview)
- 0.10: RBAC-Audit (4 plugins secured, 53 routes with require_permission)
- 0.11: LiteLLM-Cleanup (llm_client.py migrated from httpx to litellm)
- 0.12: KI-Agent-Framework docs (plugin-development-guide.md, agent_capabilities field)
- 0.13: Heartbeat configurable (ProactiveSettings, migration 0024, frontend UI)
- 0.14: Unified Search Field-Level RBAC (resolve_permissions + filter_fields_by_permission)
- 0.15: Undo/History-System (EntityHistory model, service, routes, migration 0025, HistoryViewer)
- 0.16: Storage Backend (LocalStorage + S3Storage, DMS/attachments/mail updated)
- 0.17: Import/Export unified Contact fields (firstname, surname, email_1, phone_1)
- 0.18: .gitignore & Config-Cleanup (webui→frontend, python-jose removed, .env untracked)
- 0.19: Mail-Salt Security-Fix (per-account random salt, migration 0026)
- 0.20: AGPL replaced (PyMuPDF→pypdf, OnlyOffice→Collabora, LICENSE + THIRD_PARTY_LICENSES.md)
2026-07-23 08:42:26 +02:00
Agent Zero
29202325a6
feat: Kontakt-Ordner mit Drag&Drop Baum (wie KI-Chat Sidebar)
...
- Backend: ContactFolder model (hierarchisch, parent_id, sort_order)
- Migration 0022: contact_folders Tabelle + folder_id FK auf contacts
- CRUD Routes: /api/v1/contact-folders (list, create, update, delete, reorder)
- Move Contact API: /api/v1/contact-folders/contacts/{id}/move
- folder_id Filter in contacts list API
- Frontend: ContactFolderTree mit Baum-Struktur, Drag&Drop, Kontext-Menü
- Kontakt-Personen-Icon statt Ordner-Symbol
- ContactList Items draggable (List/Table/Cards View)
- React Query Hooks für Folder CRUD + Move Contact
- Alle 266 Frontend-Tests passing
2026-07-20 01:33:44 +02:00
Agent Zero
caaf239aa9
Fix alembic down_revision to match actual revision ID (0020 not 0020_notifications_updated_at)
2026-07-19 21:38:48 +02:00
Agent Zero
cf75680583
Unified contacts model: Rentman-style type field (company/person), inline addresses, ContactPerson 1:N, all Rentman fields except rental-specific
2026-07-19 21:12:49 +02:00
Agent Zero
0774fc4407
fix: make migration 0020 idempotent (check column exists)
2026-07-17 00:59:41 +02:00
Agent Zero
4a461f4a72
fix: correct migration 0020 down_revision to 0019_rbac_groups
2026-07-17 00:58:08 +02:00
Agent Zero
1701361e92
fix(mail): add notifications updated_at migration + attachment sync fix
...
- Migration 0020: Add updated_at column to notifications table (was missing, causing sync failures)
- IMAP sync now saves attachments for existing emails (retroactive attachment saving)
- Replace silent exception with logger.warning for attachment save failures
- Sync verified: 37 attachments now stored in database (was 0 before)
2026-07-16 23:15:12 +02:00
Agent Zero
8ca6dfee88
fix: migration 0019 - add missing updated_at and deleted_at columns to roles table
2026-07-15 22:18:48 +02:00
Agent Zero
ada5594ce5
fix: migration 0019 - remove updated_at from roles INSERT (roles table has no updated_at column)
2026-07-15 22:13:55 +02:00
Agent Zero
23e5cf1e15
fix: migration 0019 - use CAST(:perms AS jsonb) to avoid SQLAlchemy bind param collision with ::jsonb cast
2026-07-15 22:10:14 +02:00
Agent Zero
7bb0eb1941
fix: migration 0019 - use sa.text() with bindparams to avoid SQLAlchemy interpreting JSON colons as bind parameters
2026-07-15 22:06:24 +02:00
Agent Zero
b490a62322
feat: granular RBAC system with user groups, deny-list, permission registry, system-admin, self-mod prevention
2026-07-15 21:59:45 +02:00
Agent Zero
905bc9b744
fix: correct migration 0018 revision id
2026-07-15 21:19:08 +02:00
Agent Zero
21f47b91dc
fix: add missing created_at and deleted_at columns to notification_preferences
...
- Remove duplicate updated_at from NotificationPreference model (inherited from TimestampMixin)
- Add migration 0018 to add created_at and deleted_at columns
- Fixes 500 error on GET /notifications/types and /preferences
2026-07-15 21:13:32 +02:00
Agent Zero
b0e987f790
feat: notification preferences system with plugin registry
...
- Add NotificationType and NotificationPreference models
- Add get_notification_types() to BasePlugin for plugin registration
- Add sync_notification_types() to PluginRegistry
- Update create_notification() to check user preferences (returns Notification|None)
- Add API endpoints: GET /types, GET /preferences, PATCH /preferences/{type_key}
- Add NotificationPreferenceUpdate schema
- Mail plugin registers 10 notification types with metadata
- Add Alembic migration 0017 for new tables + seed data
- Frontend: SettingsNotifications page with toggle switches
- Frontend: Settings tab, route, hooks for notification preferences
- i18n: notification settings keys (de/en)
2026-07-15 21:00:32 +02:00
leocrm-bot
bb4b0ce514
feat: Core Plugin system — is_core flag, topological sort dependency resolution, deactivation protection
2026-07-07 07:44:02 +02:00
Leopoldadmin
1c059369fc
Fix: 0015 RLS migration idempotent — DROP POLICY IF EXISTS before CREATE POLICY
2026-07-04 08:12:39 +00:00
Leopoldadmin
300a9018c7
B4: Fix typo in 0015 migration (dends_on → depends_on)
2026-07-04 01:37:04 +00:00
Leopoldadmin
77c2e2265c
B4: Migration 0015 — enable RLS with tenant isolation policies on all core tables
2026-07-04 01:32:14 +00:00
Leopoldadmin
6e0ab47f3a
B2: Migration 0014 — drop global unique on currency.code, add tenant-scoped unique constraint
2026-07-04 01:32:13 +00:00
Leopoldadmin
0352762229
A: Migration 0013 — create addresses table, migrate data, drop old address columns
2026-07-04 01:32:12 +00:00
Leopoldadmin
432649080f
feat(core): add alembic migration for soft-delete columns on core tables
2026-07-04 00:31:47 +00:00
Leopoldadmin
4c959914ad
feat(core): add alembic migration for attachments table
2026-07-04 00:29:12 +00:00
Leopoldadmin
b646a1be63
feat(core): add alembic migration for system_settings table
2026-07-04 00:25:39 +00:00
Leopoldadmin
1d8fcbaac2
feat(core): add alembic migration for sequences table
2026-07-04 00:24:18 +00:00
Leopoldadmin
88b4e614ae
feat(core): add alembic migration for tax_rates table
2026-07-04 00:23:15 +00:00
Leopoldadmin
c45d93038d
feat(core): add alembic migration for currencies table
2026-07-04 00:21:43 +00:00
Leopoldadmin
c098180fa1
feat(core): add alembic migration for address fields
2026-07-04 00:15:24 +00:00
Leopoldadmin
22e8756fa4
Problem 1: Alembic migration 0005 — add role_id FK column to users table
2026-07-03 19:50:08 +00:00
leocrm-bot
a2452cc04b
chore: fix all ruff lint errors + format — 0 errors, 306 tests pass
2026-06-29 17:43:56 +02:00