mirror of
https://github.com/YunoHost/SSOwat.git
synced 2024-09-03 20:06:27 +02:00
Add default value for skin in config.lua
This commit is contained in:
parent
3703ce0301
commit
083e4902c2
2 changed files with 2 additions and 1 deletions
|
@ -149,7 +149,7 @@ Array of regular expressions to be matched against URLS **and** URIs and their r
|
||||||
|
|
||||||
#### skin
|
#### skin
|
||||||
|
|
||||||
Skin used by default in views (**default**: `portal`)
|
Skin used by default in views (**default**: `"portal"`)
|
||||||
|
|
||||||
#### users
|
#### users
|
||||||
|
|
||||||
|
|
|
@ -52,6 +52,7 @@ function get_config()
|
||||||
ldap_identifier = "uid",
|
ldap_identifier = "uid",
|
||||||
ldap_attributes = {"uid", "givenname", "sn", "cn", "homedirectory", "mail", "maildrop"},
|
ldap_attributes = {"uid", "givenname", "sn", "cn", "homedirectory", "mail", "maildrop"},
|
||||||
allow_mail_authentication = true,
|
allow_mail_authentication = true,
|
||||||
|
skin = "portal",
|
||||||
default_language = "en"
|
default_language = "en"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue