diff --git a/docs/eln/admin/features.mdx b/docs/eln/admin/features.mdx index cdba1dd7..567cd61e 100644 --- a/docs/eln/admin/features.mdx +++ b/docs/eln/admin/features.mdx @@ -79,10 +79,22 @@ Configuration example: ```sh { +  extra_rules: { + enable: false, + disable_signup: true,      + disable_db_login: false    + },    + shibboleth: {      + enable: false,      + uid: 'pairwise-id',      + email: 'mail', + last_name: 'sn',      + first_name: 'givenName'    + }, openid_connect: { + enable: true, host: "oidc.address.edu", icon: "path/to/image.png", - enable: true, issuer: "https://oidc.address.edu/path/to/issuer", scheme: "https", client_id: "myClientID", @@ -101,9 +113,9 @@ Configuration example: | OIDC params | value | | ---------------------- | -------------------------------------------------------------- | +| enable | `true` or `false` | | host | address of the service | | icon | path to a public image to display on the sign-in page | -| enable | `true` or `false` | | issuer | url of the issuer | | scheme | 'https' | | client_id | client ID | @@ -119,3 +131,9 @@ Configuration example: | email | 'mail' | | last_name | 'sn' | | first_name | 'givenName' | + +| Extra rules params | value | +| ------------------ | ----------------------------- | +| enable | `true` or `false` | +| disable_signup | `true` or `false` | +| disable_db_login | `true` or `false` (Please make sure the system has an administrator account that can log in via third-party credentials before disabling DB login.) |