mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-03 05:08:43 +02:00
11 lines
246 B
TypeScript
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, '.')
|
|
}
|