diff --git a/.docker/selfhost/schema.json b/.docker/selfhost/schema.json index 613186b25e..55b057c55f 100644 --- a/.docker/selfhost/schema.json +++ b/.docker/selfhost/schema.json @@ -597,11 +597,6 @@ "type": "string", "description": "Allowed version range of the app that allowed to access the server. Requires 'client/versionControl.enabled' to be true to take effect.\n@default \">=0.20.0\"", "default": ">=0.20.0" - }, - "allowGuestDemoWorkspace": { - "type": "boolean", - "description": "Allow guests to access demo workspace.\n@default true", - "default": true } } }, diff --git a/packages/backend/server/src/core/version/config.ts b/packages/backend/server/src/core/version/config.ts index 2542ce517b..62047206e7 100644 --- a/packages/backend/server/src/core/version/config.ts +++ b/packages/backend/server/src/core/version/config.ts @@ -5,7 +5,6 @@ export interface VersionConfig { enabled: boolean; requiredVersion: string; }; - allowGuestDemoWorkspace?: boolean; } declare global { @@ -29,8 +28,4 @@ defineModuleConfig('client', { desc: "Allowed version range of the app that allowed to access the server. Requires 'client/versionControl.enabled' to be true to take effect.", default: '>=0.20.0', }, - allowGuestDemoWorkspace: { - desc: 'Allow guests to access demo workspace.', - default: true, - }, }); diff --git a/packages/frontend/admin/src/config.json b/packages/frontend/admin/src/config.json index 70f4f1c6f9..b9491a1f3a 100644 --- a/packages/frontend/admin/src/config.json +++ b/packages/frontend/admin/src/config.json @@ -211,10 +211,6 @@ "versionControl.requiredVersion": { "type": "String", "desc": "Allowed version range of the app that allowed to access the server. Requires 'client/versionControl.enabled' to be true to take effect." - }, - "allowGuestDemoWorkspace": { - "type": "Boolean", - "desc": "Allow guests to access demo workspace." } }, "captcha": {