From c11e7f35b94a3802b8e465991348d20b7c12926d Mon Sep 17 00:00:00 2001 From: 4g0tt3nSou1 <20174713+4g0tt3nSou1@users.noreply.github.com> Date: Sat, 24 Jan 2026 04:47:42 -0500 Subject: [PATCH] Clarify authentication module implementation status (#617) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Clarify authentication module implementation status Added a note regarding the implementation status of LDAP, OIDC, and other subsystems. * use warning box. --------- Co-authored-by: Miroslav Šedivý --- webpage/docs/configuration/authentication.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/webpage/docs/configuration/authentication.md b/webpage/docs/configuration/authentication.md index 0b06d7f7..ff3a25c4 100644 --- a/webpage/docs/configuration/authentication.md +++ b/webpage/docs/configuration/authentication.md @@ -11,6 +11,11 @@ import configOptions from './help.json'; Authentication is split into two modules: - **[Member Provider](#member)** - handles authentication and authorization of users, can be used to authenticate users against a database, LDAP, or any other system. + :::warning NOTE + LDAP, OIDC, and other subsystems are _not_ currently implemented. + If you are interested in these features, please consider contributing or sponsoring their development. + ::: + - **[Session Provider](#session)** - handles session management, after the module authenticates the user, it creates a session and handles the session lifecycle. ## Member Profile {#profile}