feat(nbstore): add cloud implementation (#8810)

This commit is contained in:
forehalo
2024-12-10 10:48:27 +00:00
parent 1721875ab6
commit 2f80b4f822
32 changed files with 1030 additions and 315 deletions

View File

@@ -23,7 +23,7 @@ export class UserQuotaStore extends Store {
return {
userId: data.currentUser.id,
quota: data.currentUser.quota,
used: data.collectAllBlobSizes.size,
used: data.currentUser.quotaUsage.storageQuota,
};
}
}