Add schema name display in Settings Admin Workspace (#15151)

This commit is contained in:
neo773
2025-10-17 02:12:11 +05:30
committed by GitHub
parent c578dd99b7
commit 4e3c37809c
2 changed files with 11 additions and 0 deletions
@@ -0,0 +1,5 @@
import { uuidToBase36 } from 'twenty-shared/utils';
export const getWorkspaceSchemaName = (workspaceId: string): string => {
return `workspace_${uuidToBase36(workspaceId)}`;
};