platform/server/core/src/storage.ts
Andrey Sobolev adb971e5ab
UBERF-6365: Blob mongo storage initial support (#5474)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2024-05-15 12:50:10 +07:00

11 lines
246 B
TypeScript

import { type WorkspaceId, toWorkspaceString } from '@hcengineering/core'
export * from '@hcengineering/storage'
/**
* @public
*/
export function getBucketId (workspaceId: WorkspaceId): string {
return toWorkspaceString(workspaceId, '.')
}