mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 13:25:12 +00:00
feat(server): blob data migration (#5461)
This commit is contained in:
@@ -37,8 +37,11 @@ export class WorkspaceBlobStorage {
|
||||
return blobs;
|
||||
}
|
||||
|
||||
async delete(workspaceId: string, key: string) {
|
||||
return this.provider.delete(`${workspaceId}/${key}`);
|
||||
/**
|
||||
* we won't really delete the blobs until the doc blobs manager is implemented sounded
|
||||
*/
|
||||
async delete(_workspaceId: string, _key: string) {
|
||||
// return this.provider.delete(`${workspaceId}/${key}`);
|
||||
}
|
||||
|
||||
async totalSize(workspaceId: string) {
|
||||
|
||||
Reference in New Issue
Block a user