diff --git a/.env.example b/.env.example index d31e89dd21..bd33d9cdb0 100644 --- a/.env.example +++ b/.env.example @@ -34,11 +34,11 @@ SMTP_PASSWORD= SMTP_DOMAIN= SMTP_PORT= -# DISABLE USER SIGNUPS (true or false). only applicable if MULTI_ORGANIZATION=true +# DISABLE USER SIGNUPS (true or false). only applicable if Multi-Workspace feature is enabled DISABLE_SIGNUPS= -# Enables all multi organization features -MULTI_ORGANIZATION= +# Disable Multi-Workspace features (true or false) +DISABLE_MULTI_WORKSPACE= # OBSERVABILITY APM_VENDOR= diff --git a/app.json b/app.json index 17d25a93c9..703237fcfb 100644 --- a/app.json +++ b/app.json @@ -34,11 +34,11 @@ "value": "--max-old-space-size=4096" }, "DISABLE_SIGNUPS": { - "description": "Disable sign up in login page only applicable if MULTI_ORGANIZATION=true", + "description": "Disable sign up in login page only applicable if Multi-Workspace feature is turned on", "value": "false" }, - "MULTI_ORGANIZATION": { - "description": "Enables multi organization feature", + "DISABLE_MULTI_WORKSPACE": { + "description": "Disables Multi-Workspace feature", "value": "false" } }, diff --git a/docs/docs/password-login/password-login.md b/docs/docs/password-login/password-login.md index 620ed24ae7..9297925435 100644 --- a/docs/docs/password-login/password-login.md +++ b/docs/docs/password-login/password-login.md @@ -5,9 +5,9 @@ sidebar_label: Password Login # Password Login -Password login is enabled by default for all organizations. User with admin privilege can enable/disable it. +Password login is enabled by default for all workspaces. User with admin privilege can enable/disable it. -Select `Manage SSO` from organization options +Select `Manage SSO` from workspace options
Hi ${name || ''},