mirror of
https://github.com/penpot/penpot.git
synced 2025-01-08 07:50:43 -05:00
🐛 Fix js variable prefix app->penpot on config doc.
Signed-off-by: Jonas Sulzer <jonas@violoncello.ch>
This commit is contained in:
parent
32c0913f00
commit
39fdff9052
1 changed files with 6 additions and 6 deletions
|
@ -200,10 +200,10 @@ If any of the following variables are defined, they will enable the
|
||||||
corresponding auth button in the login page
|
corresponding auth button in the login page
|
||||||
|
|
||||||
```js
|
```js
|
||||||
var appGoogleClientID = "<google-client-id-here>";
|
var penpotGoogleClientID = "<google-client-id-here>";
|
||||||
var appGitlabClientID = "<gitlab-client-id-here>";
|
var penpotGitlabClientID = "<gitlab-client-id-here>";
|
||||||
var appGithubClientID = "<github-client-id-here>";
|
var penpotGithubClientID = "<github-client-id-here>";
|
||||||
var appLoginWithLDAP = <true|false>;
|
var penpotLoginWithLDAP = <true|false>;
|
||||||
```
|
```
|
||||||
|
|
||||||
**NOTE:** The configuration should match the backend configuration for
|
**NOTE:** The configuration should match the backend configuration for
|
||||||
|
@ -216,8 +216,8 @@ It is possible to display a warning message on a demo environment and
|
||||||
disable/enable demo users:
|
disable/enable demo users:
|
||||||
|
|
||||||
```js
|
```js
|
||||||
var appDemoWarning = <true|false>;
|
var penpotDemoWarning = <true|false>;
|
||||||
var appAllowDemoUsers = <true|false>;
|
var penpotAllowDemoUsers = <true|false>;
|
||||||
```
|
```
|
||||||
|
|
||||||
**NOTE:** The configuration for demo users should match the backend
|
**NOTE:** The configuration for demo users should match the backend
|
||||||
|
|
Loading…
Reference in a new issue