Files
huly-platform/server/core/src/storage.ts
T
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, '.')
}