mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-05 18:34:49 +00: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, '.')
|
|
}
|