website/integrations: Update pgAdmin documentation (#4319)
* Update index.md Signed-off-by: Antoine <antoine+github@jiveoff.fr> * doc: quick update * Update index.md Signed-off-by: Antoine <antoine+github@jiveoff.fr> --------- Signed-off-by: Antoine <antoine+github@jiveoff.fr>
This commit is contained in:
parent
8cf0a5dace
commit
a890b93869
|
@ -13,7 +13,7 @@ pgAdmin is a management tool for PostgreSQL and derivative relational databases
|
||||||
:::
|
:::
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This is based on authentik 2022.3.3 and pgAdmin4 v6.7
|
This is based on authentik 2022.3.3 and pgAdmin4 6.19
|
||||||
:::
|
:::
|
||||||
|
|
||||||
## Preparation
|
## Preparation
|
||||||
|
@ -69,6 +69,7 @@ OAUTH2_CONFIG = [{
|
||||||
'OAUTH2_AUTHORIZATION_URL' : 'https://authentik.company/application/o/authorize/',
|
'OAUTH2_AUTHORIZATION_URL' : 'https://authentik.company/application/o/authorize/',
|
||||||
'OAUTH2_API_BASE_URL' : 'https://authentik.company/',
|
'OAUTH2_API_BASE_URL' : 'https://authentik.company/',
|
||||||
'OAUTH2_USERINFO_ENDPOINT' : 'https://authentik.company/application/o/userinfo/',
|
'OAUTH2_USERINFO_ENDPOINT' : 'https://authentik.company/application/o/userinfo/',
|
||||||
|
'OAUTH2_SERVER_METADATA_URL' : 'https://authentik.company/application/o/<app-slug>/.well-known/openid-configuration',
|
||||||
'OAUTH2_SCOPE' : 'openid email profile',
|
'OAUTH2_SCOPE' : 'openid email profile',
|
||||||
'OAUTH2_ICON' : '<fontawesome-icon>',
|
'OAUTH2_ICON' : '<fontawesome-icon>',
|
||||||
'OAUTH2_BUTTON_COLOR' : '<button-color>'
|
'OAUTH2_BUTTON_COLOR' : '<button-color>'
|
||||||
|
@ -80,6 +81,7 @@ In the code above the following placeholders have been used:
|
||||||
- `<display-name>`: The name that is displayed on the Login Button
|
- `<display-name>`: The name that is displayed on the Login Button
|
||||||
- `<client-id>`: The Client ID from step 1
|
- `<client-id>`: The Client ID from step 1
|
||||||
- `<client-secret>`: The Client Secret from step 1
|
- `<client-secret>`: The Client Secret from step 1
|
||||||
|
- `<app-slug>`: The App Slug from step 2, it should be `pgadmin` if you did not change it
|
||||||
- `<fontawesome-icon>`: An icon name from [fontawesome](https://fontawesome.com). Only brand icons seem to be supported. This icon is displayed in front of the `<display-name>`. E.g.: _fa-github_.
|
- `<fontawesome-icon>`: An icon name from [fontawesome](https://fontawesome.com). Only brand icons seem to be supported. This icon is displayed in front of the `<display-name>`. E.g.: _fa-github_.
|
||||||
- `<button-color>`: Sets the color of the Login Button. Should be in Hex format, E.g.: _#fd4b2d_
|
- `<button-color>`: Sets the color of the Login Button. Should be in Hex format, E.g.: _#fd4b2d_
|
||||||
|
|
||||||
|
|
Reference in New Issue