feat: global platform v2 update

This commit is contained in:
ivannoskov
2025-12-29 10:12:13 +03:00
parent 8e6a1fa83f
commit f64cf02100
84 changed files with 11023 additions and 11486 deletions

25
lib/demo/constants.ts Normal file
View File

@@ -0,0 +1,25 @@
// ============================================================================
// Demo Mode Constants
// ============================================================================
// Demo workspace ID - красивый и запоминающийся
export const DEMO_WORKSPACE_ID = "demo";
// Check if workspace is demo
export const isDemoWorkspace = (workspaceId: string | undefined): boolean => {
return workspaceId === DEMO_WORKSPACE_ID;
};
// Demo user
export const DEMO_USER = {
id: "demo-user-0000-0000-000000000000",
telegram_id: 123456789,
username: "demo_user",
};
// Demo workspace
export const DEMO_WORKSPACE = {
id: DEMO_WORKSPACE_ID,
name: "Демо Workspace",
};