From 3d8e7f3dffe99dfa11704a5198b54d93bbc0062f Mon Sep 17 00:00:00 2001 From: Mendon Kissling <59585235+mendonk@users.noreply.github.com> Date: Fri, 9 May 2025 07:38:49 -0400 Subject: [PATCH] docs: clarify multi-user access (#7958) * clarify-multi-user-access * Update docs/docs/Configuration/configuration-authentication.md Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com> * Update docs/docs/Configuration/configuration-authentication.md Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com> --------- Co-authored-by: Lucas Democh Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com> --- docs/docs/Configuration/configuration-authentication.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/docs/Configuration/configuration-authentication.md b/docs/docs/Configuration/configuration-authentication.md index ae15476af..aad2e0ca0 100644 --- a/docs/docs/Configuration/configuration-authentication.md +++ b/docs/docs/Configuration/configuration-authentication.md @@ -23,6 +23,9 @@ When `True`, Langflow automatically logs users in with username `langflow` and p To disable automatic login and enforce user authentication, set this value to `False` in your `.env` file. By default, this variable is set to `True`. +Langflow **does not** allow users to have simultaneous or shared access to flows. +If `AUTO_LOGIN` is enabled and user management is disabled (`LANGFLOW_NEW_USER_IS_ACTIVE=true`), users can access the same environment, but it is not password protected. If two users access the same flow, Langflow saves only the work of the last user to save. + ```bash LANGFLOW_AUTO_LOGIN=True ```