Skip to content

Commit

Permalink
Update features.mdx
Browse files Browse the repository at this point in the history
  • Loading branch information
phuang26 authored Oct 12, 2023
1 parent 6b07b0b commit 5ead1d6
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions docs/eln/admin/features.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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 |
Expand All @@ -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.) |

0 comments on commit 5ead1d6

Please sign in to comment.