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 <democh@datax.dev>
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com>
This commit is contained in:
Mendon Kissling 2025-05-09 07:38:49 -04:00 committed by GitHub
commit 3d8e7f3dff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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
```