sprint1: entity_permissions table + owned_mixin + universal permission service + API + migrations 0049+0050

This commit is contained in:
Agent Zero
2026-07-29 01:28:13 +02:00
parent cc021cda99
commit 5afa1fa927
24 changed files with 1384 additions and 1 deletions
+2
View File
@@ -35,6 +35,7 @@ from app.routes import (
errors,
contact_folders,
contact_folder_permissions,
entity_permissions,
contacts,
dashboard,
entity_history,
@@ -378,6 +379,7 @@ def create_app() -> FastAPI:
app.include_router(contacts.router)
app.include_router(contact_folders.router)
app.include_router(contact_folder_permissions.router)
app.include_router(entity_permissions.router)
app.include_router(dashboard.router)
app.include_router(entity_history.router)
app.include_router(import_export.router)