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:
parent
76051c47d9
commit
c11e7f35b9
1 changed files with 5 additions and 0 deletions
|
|
@ -11,6 +11,11 @@ import configOptions from './help.json';
|
||||||
Authentication is split into two modules:
|
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.
|
- **[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.
|
- **[Session Provider](#session)** - handles session management, after the module authenticates the user, it creates a session and handles the session lifecycle.
|
||||||
|
|
||||||
## Member Profile {#profile}
|
## Member Profile {#profile}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue