remove prefix

This commit is contained in:
2025-03-26 12:54:10 -03:00
parent 98a945efbc
commit 3564119581
8 changed files with 62 additions and 63 deletions

View File

@@ -23,8 +23,8 @@ LIMIT = 25
def me():
user: AuthenticatedUser = router.context['user']
acls = collect.get_items(KeyPair(user.id, PrefixKey('acls')), limit=LIMIT)
workspaces = collect.get_items(KeyPair(user.id, PrefixKey('orgs')), limit=LIMIT)
acls = collect.get_items(KeyPair(user.id, PrefixKey('acls#')), limit=LIMIT)
workspaces = collect.get_items(KeyPair(user.id, PrefixKey('orgs#')), limit=LIMIT)
return {
'acls': acls['items'],