Consistently use UUID type in APIs instead of UUID str as option.

This commit is contained in:
2026-01-27 16:24:02 +00:00
parent cfb917da46
commit 8f862fb4d1
5 changed files with 65 additions and 126 deletions
+1 -1
View File
@@ -176,7 +176,7 @@ async def grantable_permission(test_db: DB, test_org: Org) -> Permission:
perm = Permission.create(scope="test:grantable:perm", display_name="Grantable Perm")
create_permission(perm)
# Add to org's grantable permissions
add_permission_to_organization(str(test_org.uuid), perm.scope)
add_permission_to_organization(test_org.uuid, perm.uuid)
return perm