Clarify authentication module implementation status (#617)

* 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ý <sedivy.miro@gmail.com>
This commit is contained in:
4g0tt3nSou1 2026-01-24 04:47:42 -05:00 committed by GitHub
parent 76051c47d9
commit c11e7f35b9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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