Fix errors where permission scopes were still expected for indexing.

This commit is contained in:
2026-01-24 00:58:18 +00:00
parent cebef8adfc
commit aae33e60ce
6 changed files with 47 additions and 28 deletions
+1 -1
View File
@@ -100,7 +100,7 @@ class _OrgData(msgspec.Struct):
class _RoleData(msgspec.Struct):
org: UUID
display_name: str
permissions: dict[UUID, bool] # permission_uuid -> True
permissions: dict[UUID, bool] = {} # permission_uuid -> True
class _UserData(msgspec.Struct):