feat: folder permissions (ACLs) - share folders with users/groups, inherit to subfolders, permission dialog UI

This commit is contained in:
Agent Zero
2026-07-28 23:58:19 +02:00
parent 784a771039
commit cc021cda99
12 changed files with 1185 additions and 4 deletions
+2
View File
@@ -34,6 +34,7 @@ from app.routes import (
auth,
errors,
contact_folders,
contact_folder_permissions,
contacts,
dashboard,
entity_history,
@@ -376,6 +377,7 @@ def create_app() -> FastAPI:
app.include_router(notifications.router)
app.include_router(contacts.router)
app.include_router(contact_folders.router)
app.include_router(contact_folder_permissions.router)
app.include_router(dashboard.router)
app.include_router(entity_history.router)
app.include_router(import_export.router)